上次基於 EF Core 實現了一個自動審計的功能,詳細能夠參考 https://www.cnblogs.com/weihanli/p/auto-audit-for-entity-framework.html ,雖說多數狀況下能夠適用,可是由於要顯式繼承於一個 AuditDbContextBase
或 AuditDbContext
,因此對代碼的侵入性比較強,對於已經沒法修改的代碼或者已經繼承於某一個類了,就沒法再繼承 AuditDBContext
了,就沒有辦法實現自動審計了,在 WeihanLi.EntityFramework
1.7.0 新版本里引入了 AOP 的設計,結合 AOP 來實現就簡單不少了,再也不須要對原有的 DbContext
有任何修改就能夠輕鬆實現自動審計了,下面來看如何作html
使用 AddProxyDbContext
代替 AddDbContext
,AddProxyDbContextPool
代替 AddDbContextPool
,會自動註冊代理服務,以實現 AOP 攔截git
var services = new ServiceCollection(); // 使用內置的擴展註冊 DbContext 代理服務 //services.AddProxyDbContext<TestDbContext>(options => //{ // options // .UseLoggerFactory(loggerFactory) // //.EnableDetailedErrors() // //.EnableSensitiveDataLogging() // // .UseInMemoryDatabase("Tests") // .UseSqlServer(DbConnectionString) // //.AddInterceptors(new QueryWithNoLockDbCommandInterceptor()) // ; //}); // 使用內置的擴展註冊 DbContextPool 代理服務,只是爲了方便使用,只會代理 DbContext services.AddProxyDbContextPool<TestDbContext>(options => { options .UseLoggerFactory(loggerFactory) //.EnableDetailedErrors() //.EnableSensitiveDataLogging() // .UseInMemoryDatabase("Tests") .UseSqlServer(DbConnectionString) //.AddInterceptors(new QueryWithNoLockDbCommandInterceptor()) ; }); // 註冊 AOP 服務 services.AddFluentAspects(options => { // 配置使用 AuditDbContextInterceptor 攔截 DbContext 的 SaveChanges 和 SaveChangesAsync 方法 options.InterceptMethod<DbContext>(m => m.Name == nameof(DbContext.SaveChanges) || m.Name == nameof(DbContext.SaveChangesAsync)) .With<AuditDbContextInterceptor>() ; }); // 註冊 serviceLocator(可選,根據本身須要 DependencyResolver.SetDependencyResolver(services);
AuditConfig.Configure(builder => { builder // 配置操做用戶獲取方式 .WithUserIdProvider(EnvironmentAuditUserIdProvider.Instance.Value) //.WithUnModifiedProperty() // 保存未修改的屬性,默認只保存發生修改的屬性 // 保存更多屬性 .EnrichWithProperty("MachineName", Environment.MachineName) .EnrichWithProperty(nameof(ApplicationHelper.ApplicationName), ApplicationHelper.ApplicationName) // 保存到自定義的存儲 .WithStore<AuditFileStore>() .WithStore<AuditFileStore>("logs0.log") // 忽略指定實體 .IgnoreEntity<AuditRecord>() // 忽略指定實體的某個屬性 .IgnoreProperty<TestEntity>(t => t.CreatedAt) // 忽略全部屬性名稱爲 CreatedAt 的屬性 .IgnoreProperty("CreatedAt") ; });
DependencyResolver.TryInvokeService<TestDbContext>(dbContext => { dbContext.Database.EnsureDeleted(); dbContext.Database.EnsureCreated(); var testEntity = new TestEntity() { Extra = new { Name = "Tom" }.ToJson(), CreatedAt = DateTimeOffset.UtcNow, }; dbContext.TestEntities.Add(testEntity); dbContext.SaveChanges(); testEntity.CreatedAt = DateTimeOffset.Now; testEntity.Extra = new { Name = "Jerry" }.ToJson(); dbContext.SaveChanges(); dbContext.Remove(testEntity); dbContext.SaveChanges(); var testEntity1 = new TestEntity() { Extra = new { Name = "Tom1" }.ToJson(), CreatedAt = DateTimeOffset.UtcNow, }; dbContext.TestEntities.Add(testEntity1); var testEntity2 = new TestEntity() { Extra = new { Name = "Tom2" }.ToJson(), CreatedAt = DateTimeOffset.UtcNow, }; dbContext.TestEntities.Add(testEntity2); dbContext.SaveChanges(); }); DependencyResolver.TryInvokeService<TestDbContext>(dbContext => { dbContext.Remove(new TestEntity() { Id = 2 }); dbContext.SaveChanges(); }); // disable audit AuditConfig.DisableAudit(); // enable audit // AuditConfig.EnableAudit();
這樣以來就不須要修改原有代碼了~~,心情大好,哈哈~github
若是應用多有多個 DbContext
有的須要審計,有的不須要審計,則能夠在配置的時候指定具體的 DbContext
類型如 TestDbContext
,這樣就只會啓用 TestDbContext
的自動審計,別的 DbContext
好比 Test2DbContext
就不會自動審計了ide