16 lines
378 B
C#
16 lines
378 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|