chore: 构建

This commit is contained in:
陈淳
2023-12-28 11:04:45 +08:00
parent f539ab39e7
commit fc9590cb7a
2 changed files with 16 additions and 19 deletions

View File

@@ -7,11 +7,8 @@
//namespace Volo.Abp.AuditLogging.EntityFrameworkCore; //namespace Volo.Abp.AuditLogging.EntityFrameworkCore;
//public class SqlSugarCoreAuditLogRepository : SqlSugarRepository<AuditLog, Guid>, IAuditLogRepository //public class SqlSugarCoreAuditLogRepository : SqlSugarNoConstraintsRepository<AuditLog,Guid>, IAuditLogRepository
//{ //{
// public SqlSugarCoreAuditLogRepository(ISugarDbContextProvider<ISqlSugarDbContext> sugarDbContextProvider) : base(sugarDbContextProvider)
// {
// }
// public virtual async Task<List<AuditLog>> GetListAsync( // public virtual async Task<List<AuditLog>> GetListAsync(
// string sorting = null, // string sorting = null,

View File

@@ -1,16 +1,16 @@
using Volo.Abp.AuditLogging; //using Volo.Abp.AuditLogging;
using Volo.Abp.Modularity; //using Volo.Abp.Modularity;
using Yi.Framework.SqlSugarCore; //using Yi.Framework.SqlSugarCore;
namespace Yi.AuditLogging.SqlSugarCore //namespace Yi.AuditLogging.SqlSugarCore
{ //{
[DependsOn(typeof(AbpAuditLoggingDomainModule))] // [DependsOn(typeof(AbpAuditLoggingDomainModule))]
[DependsOn(typeof(YiFrameworkSqlSugarCoreModule))] // [DependsOn(typeof(YiFrameworkSqlSugarCoreModule))]
public class YiAuditLoggingSqlSugarCoreModule:AbpModule // public class YiAuditLoggingSqlSugarCoreModule:AbpModule
{ // {
public override void ConfigureServices(ServiceConfigurationContext context) // public override void ConfigureServices(ServiceConfigurationContext context)
{ // {
context.Services.AddYiDbContext<YiAuditLoggingDbContext>(); // context.Services.AddYiDbContext<YiAuditLoggingDbContext>();
} // }
} // }
} //}