mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-02 15:50:54 +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; }
|
|
}
|