//using AutoMapper.Configuration;
|
//using Microsoft.Extensions.Configuration;
|
//using Microsoft.Extensions.DependencyInjection;
|
|
//namespace WIDESEA.Common
|
//{
|
// public static class SqlsugarSetup
|
// {
|
// public static void AddSqlsugarSetup(this IServiceCollection services, Microsoft.Extensions.Configuration.IConfiguration configuration)
|
// {
|
// SqlSugarDbContext.DbConfigs.ForEach(it =>
|
// {
|
// //是否需要初始化数据库
|
// if (it.IsInitDb)
|
// {
|
// //初始化数据库表结构
|
// }
|
// //是否需要更新种子数据
|
// if (it.IsSeedData)
|
// {
|
// //初始化种子数据
|
// }
|
// });
|
// }
|
// }
|
//}
|