1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
using Microsoft.Extensions.Logging; using SqlSugar; using Volo.Abp.DependencyInjection; using Yi.Framework.Rbac.SqlSugarCore; using Yi.Framework.SqlSugarCore; namespace Yi.Abp.SqlSugarCore { public class YiDbContext : SqlSugarDbContext { public YiDbContext(IAbpLazyServiceProvider lazyServiceProvider) : base(lazyServiceProvider) { } } }