137 lines
6.2 KiB
C#
137 lines
6.2 KiB
C#
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.Hosting;
|
|
using ShardingCore.Test50.Domain.Entities;
|
|
using ShardingCore.Test50.Shardings;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
#if EFCORE5SQLSERVER
|
|
using ShardingCore.SqlServer;
|
|
#endif
|
|
#if EFCORE5MYSQL
|
|
using ShardingCore.MySql;
|
|
#endif
|
|
|
|
namespace ShardingCore.Test50
|
|
{
|
|
/*
|
|
* @Author: xjm
|
|
* @Description:
|
|
* @Date: Friday, 15 January 2021 15:37:46
|
|
* @Email: 326308290@qq.com
|
|
*/
|
|
public class Startup
|
|
{
|
|
public static readonly ILoggerFactory efLogger = LoggerFactory.Create(builder =>
|
|
{
|
|
builder.AddFilter((category, level) => category == DbLoggerCategory.Database.Command.Name && level == LogLevel.Information).AddConsole();
|
|
});
|
|
// // 自定义 host 构建
|
|
public void ConfigureHost(IHostBuilder hostBuilder)
|
|
{
|
|
hostBuilder
|
|
.ConfigureAppConfiguration(builder =>
|
|
{
|
|
builder.AddJsonFile("Configs/DbConfig.json");
|
|
//builder.AddJsonFile("Configs/MacDbConfig.json");
|
|
});
|
|
}
|
|
|
|
// 支持的形式:
|
|
// ConfigureServices(IServiceCollection services)
|
|
// ConfigureServices(IServiceCollection services, HostBuilderContext hostBuilderContext)
|
|
// ConfigureServices(HostBuilderContext hostBuilderContext, IServiceCollection services)
|
|
public void ConfigureServices(IServiceCollection services, HostBuilderContext hostBuilderContext)
|
|
{
|
|
services.AddShardingDbContext<ShardingDefaultDbContext, DefaultDbContext>(o => o.UseSqlServer(hostBuilderContext.Configuration.GetSection("SqlServer")["ConnectionString"])
|
|
,op =>
|
|
{
|
|
op.EnsureCreatedWithOutShardingTable = true;
|
|
op.CreateShardingTableOnStart = true;
|
|
op.UseShardingOptionsBuilder((connection, builder) => builder.UseSqlServer(connection).UseLoggerFactory(efLogger),
|
|
(conStr,builder)=> builder.UseSqlServer(conStr).UseLoggerFactory(efLogger));
|
|
op.AddShardingTableRoute<SysUserModVirtualTableRoute>();
|
|
op.AddShardingTableRoute<SysUserSalaryVirtualTableRoute>();
|
|
});
|
|
// services.AddShardingDbContext<ShardingDefaultDbContext, DefaultDbContext>(o => o.UseMySql(hostBuilderContext.Configuration.GetSection("MySql")["ConnectionString"],new MySqlServerVersion("5.7.15"))
|
|
// ,op =>
|
|
// {
|
|
// op.EnsureCreatedWithOutShardingTable = true;
|
|
// op.CreateShardingTableOnStart = true;
|
|
// op.UseShardingOptionsBuilder((connection, builder) => builder.UseMySql(connection,new MySqlServerVersion("5.7.15")).UseLoggerFactory(efLogger),
|
|
// (conStr,builder)=> builder.UseMySql(conStr,new MySqlServerVersion("5.7.15")).UseLoggerFactory(efLogger));
|
|
// op.AddShardingTableRoute<SysUserModVirtualTableRoute>();
|
|
// op.AddShardingTableRoute<SysUserSalaryVirtualTableRoute>();
|
|
// });
|
|
}
|
|
|
|
// 可以添加要用到的方法参数,会自动从注册的服务中获取服务实例,类似于 asp.net core 里 Configure 方法
|
|
public void Configure(IServiceProvider serviceProvider)
|
|
{
|
|
var shardingBootstrapper = serviceProvider.GetService<IShardingBootstrapper>();
|
|
shardingBootstrapper.Start();
|
|
// 有一些测试数据要初始化可以放在这里
|
|
InitData(serviceProvider).GetAwaiter().GetResult();
|
|
}
|
|
|
|
/// <summary>
|
|
/// 添加种子数据
|
|
/// </summary>
|
|
/// <param name="serviceProvider"></param>
|
|
/// <returns></returns>
|
|
private async Task InitData(IServiceProvider serviceProvider)
|
|
{
|
|
using (var scope = serviceProvider.CreateScope())
|
|
{
|
|
var virtualDbContext = scope.ServiceProvider.GetService<ShardingDefaultDbContext>();
|
|
if (!await virtualDbContext.Set<SysUserMod>().AnyAsync())
|
|
{
|
|
var ids = Enumerable.Range(1, 1000);
|
|
var userMods = new List<SysUserMod>();
|
|
var userSalaries = new List<SysUserSalary>();
|
|
var beginTime = new DateTime(2020, 1, 1);
|
|
var endTime = new DateTime(2021, 12, 1);
|
|
foreach (var id in ids)
|
|
{
|
|
userMods.Add(new SysUserMod()
|
|
{
|
|
Id = id.ToString(),
|
|
Age = id,
|
|
Name = $"name_{id}",
|
|
AgeGroup = Math.Abs(id % 10)
|
|
});
|
|
var tempTime = beginTime;
|
|
var i = 0;
|
|
while (tempTime <= endTime)
|
|
{
|
|
var dateOfMonth = $@"{tempTime:yyyyMM}";
|
|
userSalaries.Add(new SysUserSalary()
|
|
{
|
|
Id = $@"{id}{dateOfMonth}",
|
|
UserId = id.ToString(),
|
|
DateOfMonth = int.Parse(dateOfMonth),
|
|
Salary = 700000 + id * 100 * i,
|
|
SalaryLong = 700000 + id * 100 * i,
|
|
SalaryDecimal = (700000 + id * 100 * i) / 100m,
|
|
SalaryDouble = (700000 + id * 100 * i) / 100d,
|
|
SalaryFloat = (700000 + id * 100 * i) / 100f
|
|
});
|
|
tempTime = tempTime.AddMonths(1);
|
|
i++;
|
|
}
|
|
}
|
|
|
|
await virtualDbContext.AddRangeAsync(userMods);
|
|
await virtualDbContext.AddRangeAsync(userSalaries);
|
|
|
|
await virtualDbContext.SaveChangesAsync();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |