You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
101 lines
2.2 KiB
101 lines
2.2 KiB
5 months ago
|
|
||
|
namespace Admin.NET.Core;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 数据库配置选项
|
||
|
/// </summary>
|
||
|
public sealed class DbConnectionOptions : IConfigurableOptions<DbConnectionOptions>
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 启用控制台打印SQL
|
||
|
/// </summary>
|
||
|
public bool EnableConsoleSql { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 数据库集合
|
||
|
/// </summary>
|
||
|
public List<DbConnectionConfig> ConnectionConfigs { get; set; }
|
||
|
|
||
|
public void PostConfigure(DbConnectionOptions options, IConfiguration configuration)
|
||
|
{
|
||
|
foreach (var dbConfig in options.ConnectionConfigs)
|
||
|
{
|
||
|
if (dbConfig.ConfigId == null || string.IsNullOrWhiteSpace(dbConfig.ConfigId.ToString()))
|
||
|
dbConfig.ConfigId = SqlSugarConst.MainConfigId;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// 数据库连接配置
|
||
|
/// </summary>
|
||
|
public sealed class DbConnectionConfig : ConnectionConfig
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 数据库配置
|
||
|
/// </summary>
|
||
|
public DbSettings DbSettings { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 表配置
|
||
|
/// </summary>
|
||
|
public TableSettings TableSettings { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 种子配置
|
||
|
/// </summary>
|
||
|
public SeedSettings SeedSettings { get; set; }
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// 数据库配置
|
||
|
/// </summary>
|
||
|
public sealed class DbSettings
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 启用库表初始化
|
||
|
/// </summary>
|
||
|
public bool EnableInitDb { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 启用库表差异日志
|
||
|
/// </summary>
|
||
|
public bool EnableDiffLog { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 启用驼峰转下划线
|
||
|
/// </summary>
|
||
|
public bool EnableUnderLine { get; set; }
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// 表配置
|
||
|
/// </summary>
|
||
|
public sealed class TableSettings
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 启用表初始化
|
||
|
/// </summary>
|
||
|
public bool EnableInitTable { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 启用表增量更新
|
||
|
/// </summary>
|
||
|
public bool EnableIncreTable { get; set; }
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// 种子配置
|
||
|
/// </summary>
|
||
|
public sealed class SeedSettings
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 启用种子初始化
|
||
|
/// </summary>
|
||
|
public bool EnableInitSeed { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 启用种子增量更新
|
||
|
/// </summary>
|
||
|
public bool EnableIncreSeed { get; set; }
|
||
|
}
|