mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-04 00:35:47 +08:00
15 lines
351 B
C#
15 lines
351 B
C#
using Microsoft.Extensions.Logging;
|
|
using SqlSugar;
|
|
using Volo.Abp.DependencyInjection;
|
|
using Yi.Framework.Rbac.SqlSugarCore;
|
|
|
|
namespace Acme.BookStore.SqlSugarCore
|
|
{
|
|
public class YiDbContext : YiRbacDbContext
|
|
{
|
|
public YiDbContext(IAbpLazyServiceProvider lazyServiceProvider) : base(lazyServiceProvider)
|
|
{
|
|
}
|
|
}
|
|
}
|