Blame view

Yi.Abp.Net8/src/Yi.Abp.SqlSugarCore/YiDbContext.cs 378 Bytes
515fceeb   “wangming”   框架初始化
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)
          {
          }
      }
  }