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