2021-02-02 17:37:41 +08:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
using ChronusJob;
|
|
|
|
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;
|
|
|
|
using Microsoft.OpenApi.Models;
|
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();
|
|
|
|
services.AddSwaggerGen(c => { c.SwaggerDoc("v1", new OpenApiInfo {Title = "Samples.AutoByDate.SqlServer", Version = "v1"}); });
|
2021-08-23 19:05:30 +08:00
|
|
|
|
2021-10-11 20:58:55 +08:00
|
|
|
services.AddShardingDbContext<DefaultShardingDbContext>(
|
2021-09-21 11:33:41 +08:00
|
|
|
o => o.UseSqlServer(
|
|
|
|
"Data Source=localhost;Initial Catalog=ShardingCoreDBxx2;Integrated Security=True;")
|
2021-09-23 10:17:25 +08:00
|
|
|
).Begin(o =>
|
|
|
|
{
|
|
|
|
o.CreateShardingTableOnStart = true;
|
|
|
|
o.EnsureCreatedWithOutShardingTable = true;
|
|
|
|
})
|
2021-09-21 11:33:41 +08:00
|
|
|
.AddShardingQuery((conStr, builder) => builder.UseSqlServer(conStr)
|
|
|
|
.UseQueryTrackingBehavior(QueryTrackingBehavior.NoTracking))
|
|
|
|
.AddShardingTransaction((connection, builder) =>
|
|
|
|
builder.UseSqlServer(connection))
|
|
|
|
.AddDefaultDataSource("ds0",
|
|
|
|
"Data Source=localhost;Initial Catalog=ShardingCoreDB;Integrated Security=True;")
|
2021-09-23 10:17:25 +08:00
|
|
|
.AddShardingTableRoute(o =>
|
2021-08-23 19:05:30 +08:00
|
|
|
{
|
2021-09-21 11:33:41 +08:00
|
|
|
o.AddShardingTableRoute<SysUserLogByDayVirtualTableRoute>();
|
|
|
|
o.AddShardingTableRoute<TestLogWeekVirtualRoute>();
|
|
|
|
}).End();
|
2021-02-02 17:37:41 +08:00
|
|
|
services.AddChronusJob();
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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.UseSwagger();
|
|
|
|
app.UseSwaggerUI(c => c.SwaggerEndpoint("/swagger/v1/swagger.json", "Samples.AutoByDate.SqlServer v1"));
|
|
|
|
}
|
|
|
|
|
|
|
|
app.UseShardingCore();
|
|
|
|
|
|
|
|
app.UseRouting();
|
|
|
|
|
|
|
|
app.UseAuthorization();
|
|
|
|
|
|
|
|
app.UseEndpoints(endpoints => { endpoints.MapControllers(); });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|