mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
14 lines
390 B
C#
14 lines
390 B
C#
|
|
using Microsoft.EntityFrameworkCore;
|
|||
|
|
using Volo.Abp.Data;
|
|||
|
|
using Volo.Abp.EntityFrameworkCore;
|
|||
|
|
using Volo.Abp.MultiTenancy;
|
|||
|
|
|
|||
|
|
namespace Volo.Abp.SettingManagement.EntityFrameworkCore;
|
|||
|
|
|
|||
|
|
[IgnoreMultiTenancy]
|
|||
|
|
[ConnectionStringName(AbpSettingManagementDbProperties.ConnectionStringName)]
|
|||
|
|
public interface ISettingManagementDbContext : IEfCoreDbContext
|
|||
|
|
{
|
|||
|
|
DbSet<Setting> Settings { get; }
|
|||
|
|
}
|