Can we enable or disable feature flag in appsettings.json in ABP 10.1 ?
What about "permissionGrant" which aggregate they beloing to ?
can we use EntityUpdatedEventData event with them ?
Fixed ,thanks
the DB migrator now see the db and created the DB , but with only history table, I am trying to create migration script but says cannot fine this dbcontext :
dotnet ef migrations add Init_Audit_Logging
--context Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingDbContext
No DbContext named 'AbpAuditLoggingDbContext' was found.
under which project should that script be run and is there another way to generate the migration script ?
Yes it is MSSQL , but based on previous comments, I am just using builtin AbpAuditLoggingDbContext do I really need to create a seperate module and DbContextFactory ?
followed all the above, yet when running DB Migrator no new DB is created, also when I run migration script from cmd I get this error :
dotnet ef migrations add "Init_Audit_Logging" --context AbpAuditLoggingDbContext Build started... Build succeeded. No DbContext named 'AbpAuditLoggingDbContext' was found.
But I see no relationship between connectionstring and auditing DB context, how to set the connection string name to auditing DB context or there is a default value for audit db context connectionstring
I get syntax error on this line : database.MappedConnections.Add(typeof(AbpAuditLoggingDbContext));
because Add method accept string , but we are passing type
Do I need to create another DBMigrator project for auditing DB or you recommended using one DB Migrator for both prod and auditing databases , any example ?