|
|
|
@ -2,6 +2,7 @@ |
|
|
|
using Volo.Abp.AuditLogging.EntityFrameworkCore; |
|
|
|
using Volo.Abp.BackgroundJobs.EntityFrameworkCore; |
|
|
|
using Volo.Abp.EntityFrameworkCore.SqlServer; |
|
|
|
using Volo.Abp.FeatureManagement.EntityFrameworkCore; |
|
|
|
using Volo.Abp.Identity.EntityFrameworkCore; |
|
|
|
using Volo.Abp.Modularity; |
|
|
|
using Volo.Abp.PermissionManagement.EntityFrameworkCore; |
|
|
|
@ -18,7 +19,8 @@ namespace MyCompanyName.MyProjectName.EntityFrameworkCore |
|
|
|
typeof(AbpEntityFrameworkCoreSqlServerModule), |
|
|
|
typeof(BackgroundJobsEntityFrameworkCoreModule), |
|
|
|
typeof(AbpAuditLoggingEntityFrameworkCoreModule), |
|
|
|
typeof(AbpTenantManagementEntityFrameworkCoreModule) |
|
|
|
typeof(AbpTenantManagementEntityFrameworkCoreModule), |
|
|
|
typeof(AbpFeatureManagementEntityFrameworkCoreModule) |
|
|
|
)] |
|
|
|
public class MyProjectNameEntityFrameworkCoreModule : AbpModule |
|
|
|
{ |
|
|
|
|