Files
Yi.Framework/Yi.Abp.Net8/src/Yi.Abp.SqlSugarCore/YiDbContext.cs
2024-11-20 13:43:35 +08:00

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)
{
}
}
}