Files
Yi.Admin/Yi.Abp.Net8/framework/Yi.Framework.SqlSugarCore/DbConnOptions.cs

50 lines
1.1 KiB
C#
Raw Normal View History

2023-04-12 22:52:09 +08:00
using SqlSugar;
2023-12-11 09:55:12 +08:00
namespace Yi.Framework.SqlSugarCore
2023-04-12 22:52:09 +08:00
{
public class DbConnOptions
{
/// <summary>
/// 连接字符串,必填
/// </summary>
public string? Url { get; set; }
/// <summary>
/// 数据库类型
/// </summary>
public DbType? DbType { get; set; }
/// <summary>
/// 开启种子数据
/// </summary>
public bool EnabledDbSeed { get; set; } = false;
/// <summary>
/// 开启读写分离
/// </summary>
public bool EnabledReadWrite { get; set; } = false;
/// <summary>
/// 开启codefirst
/// </summary>
public bool EnabledCodeFirst { get; set; } = false;
2023-12-11 09:55:12 +08:00
/// <summary>
/// 开启sql日志
/// </summary>
public bool EnabledSqlLog { get; set; } = true;
2023-04-12 22:52:09 +08:00
/// <summary>
/// 实体程序集
/// </summary>
public List<string>? EntityAssembly { get; set; }
/// <summary>
/// 读写分离
/// </summary>
public List<string>? ReadUrl { get; set; }
2023-04-12 22:52:09 +08:00
}
}