2021-02-02 17:37:41 +08:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
using Microsoft.AspNetCore.Builder;
|
|
|
|
using Microsoft.AspNetCore.Hosting;
|
|
|
|
using Microsoft.AspNetCore.HttpsPolicy;
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
2021-08-23 19:05:30 +08:00
|
|
|
using Microsoft.EntityFrameworkCore;
|
2021-02-02 17:37:41 +08:00
|
|
|
using Microsoft.Extensions.Configuration;
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
using Microsoft.Extensions.Hosting;
|
|
|
|
using Microsoft.Extensions.Logging;
|
2021-08-23 19:05:30 +08:00
|
|
|
using Samples.AutoByDate.SqlServer.DbContexts;
|
|
|
|
using Samples.AutoByDate.SqlServer.Shardings;
|
|
|
|
using ShardingCore;
|
2021-02-02 17:37:41 +08:00
|
|
|
|
|
|
|
namespace Samples.AutoByDate.SqlServer
|
|
|
|
{
|
|
|
|
public class Startup
|
|
|
|
{
|
|
|
|
public Startup(IConfiguration configuration)
|
|
|
|
{
|
|
|
|
Configuration = configuration;
|
|
|
|
}
|
|
|
|
|
|
|
|
public IConfiguration Configuration { get; }
|
|
|
|
|
|
|
|
// This method gets called by the runtime. Use this method to add services to the container.
|
|
|
|
public void ConfigureServices(IServiceCollection services)
|
|
|
|
{
|
|
|
|
services.AddControllers();
|
2022-01-06 21:30:05 +08:00
|
|
|
services.AddShardingDbContext<DefaultShardingDbContext>()
|
|
|
|
.AddEntityConfig(o =>
|
2021-09-23 10:17:25 +08:00
|
|
|
{
|
|
|
|
o.CreateShardingTableOnStart = true;
|
|
|
|
o.EnsureCreatedWithOutShardingTable = true;
|
2021-09-21 11:33:41 +08:00
|
|
|
o.AddShardingTableRoute<SysUserLogByDayVirtualTableRoute>();
|
|
|
|
o.AddShardingTableRoute<TestLogWeekVirtualRoute>();
|
2022-01-06 21:30:05 +08:00
|
|
|
})
|
|
|
|
.AddConfig(sp =>
|
|
|
|
{
|
|
|
|
sp.ConfigId = "c1";
|
|
|
|
sp.UseShardingQuery((conStr, builder) =>
|
|
|
|
{
|
|
|
|
builder.UseSqlServer(conStr);
|
|
|
|
});
|
|
|
|
sp.UseShardingTransaction((connection, builder) =>
|
|
|
|
{
|
|
|
|
builder.UseSqlServer(connection);
|
|
|
|
});
|
2022-01-25 23:34:11 +08:00
|
|
|
sp.AddDefaultDataSource("ds0", "Data Source=localhost;Initial Catalog=ShardingCoreDBz;Integrated Security=True;");
|
2022-01-06 21:30:05 +08:00
|
|
|
}).EnsureConfig();
|
2021-02-02 17:37:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
|
|
|
|
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
|
|
|
|
{
|
|
|
|
if (env.IsDevelopment())
|
|
|
|
{
|
|
|
|
app.UseDeveloperExceptionPage();
|
|
|
|
}
|
|
|
|
|
|
|
|
app.UseShardingCore();
|
|
|
|
|
|
|
|
app.UseRouting();
|
|
|
|
|
|
|
|
app.UseAuthorization();
|
|
|
|
|
|
|
|
app.UseEndpoints(endpoints => { endpoints.MapControllers(); });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|