sharding/README.md

446 lines
20 KiB
Markdown
Raw Normal View History

2021-01-26 10:49:53 +08:00
<h1 align="center"> ShardingCore </h1>
2021-01-26 22:18:07 +08:00
2021-01-26 10:49:53 +08:00
2021-08-20 23:10:34 +08:00
`ShardingCore`是什么简单来说我认为他是目前最完美的efcore下的分表组件,支持所有的efcore支持的数据库(原则上),针对dbContext进行plus升级实现了无感知开发。
在使用程度上极大的降低了代码侵入性保证开发时候的无感知使用(和efcore原生dbcontext一样)。
该框架在分表数据下使用的而架构是流式聚合可以保证内存的稳定,而非内存迭代。
但是针对efcore下的框架基本上都适用,你以为这就完了吗shardingcore我可以说完美支持abp并且无侵入性。
2021-03-13 14:06:54 +08:00
最后如果喜欢本项目的话或者本项目对您有帮助的话麻烦[点我star github 地址](https://github.com/xuejmnet/sharding-core) ,也欢迎各位.neter交流。
2021-01-26 22:13:28 +08:00
### 依赖
2021-08-20 23:10:34 +08:00
Release | EF Core | .NET Standard | .NET (Core)
--- | --- | --- | ---
2021-09-03 22:40:22 +08:00
[5.2.x.x](https://www.nuget.org/packages/ShardingCore/5.2.0.16) | >= 5.0.7 | 2.1 | 3.0+
[3.2.x.x](https://www.nuget.org/packages/ShardingCore/3.2.0.16) | 3.1.18 | 2.0 | 2.0+
[2.2.x.x](https://www.nuget.org/packages/ShardingCore/2.2.0.16) | 2.2.6 | 2.0 | 2.0+
2021-08-20 23:10:34 +08:00
### 数据库支持
数据库 | 是否支持 | 支持情况
--- | --- | ---
2021-09-03 22:40:22 +08:00
SqlServer | 支持 | 90%近乎完美
2021-08-20 23:10:34 +08:00
MySql |支持 | 未测试
PostgreSql | 支持 | 未测试
SQLite | 支持 | 未测试
Oracle | 支持 | 未测试
其他 | 支持(只要efcore支持) | 未测试
2021-02-02 21:44:47 +08:00
2021-01-26 22:13:28 +08:00
2021-01-26 10:49:53 +08:00
- [开始](#开始)
2021-02-02 21:44:47 +08:00
- [简介](#简介)
2021-01-26 22:13:28 +08:00
- [概念](#概念)
2021-02-02 21:44:47 +08:00
- [优点](#优点)
- [缺点](#缺点)
2021-01-26 22:15:41 +08:00
- [安装](#安装)
2021-01-26 10:49:53 +08:00
- [配置](#配置)
- [使用](#使用)
2021-01-27 13:38:30 +08:00
- [默认路由](#默认路由)
2021-01-26 22:13:28 +08:00
- [Api](#Api)
2021-01-26 10:49:53 +08:00
- [高级配置](#高级配置)
2021-01-26 22:13:28 +08:00
- [手动路由](#手动路由)
- [自动建表](#自动建表)
2021-01-26 22:35:41 +08:00
- [事务](#事务)
- [批量操作](#批量操作)
- [读写分离](#读写分离)
2021-09-03 22:40:22 +08:00
- [高性能分页](#高性能分页)
2021-01-26 10:49:53 +08:00
- [注意事项](#注意事项)
2021-01-26 22:35:41 +08:00
- [计划(Future)](#计划)
2021-01-27 13:38:30 +08:00
- [最后](#最后)
2021-01-26 22:13:28 +08:00
# 开始
2021-02-02 21:44:47 +08:00
以下所有例子都以Sql Server为例 MySql亦如此
## 简介
2021-03-13 14:06:54 +08:00
该库从最初```2020年12月初```到现在还处于初期阶段,可能或许会有bug也希望各位多多理解,也是为了给.net生态贡献一下,从最初的仅支持单库分表到现在的多数据库分库分表且支持多表join和流式聚合等操作
开发该库也给我自己带了了很多新的编程思路,目前该库支持的分库分表可以进行完全的自定义,基本上可以满足95%以上的
2021-02-02 21:44:47 +08:00
业务需求,唯一的限制就是分表规则必须满足 x+y+z,x表示固定的表名,y表示固定的表名和表后缀之间的联系(可以为空),z表示表后缀,可以按照你自己的任意业务逻辑进行切分,
如:user_0,user_1或者user202101,user202102...当然该库同样适用于多租户模式下的隔离,该库为了支持之后的分库已经重写了之前的union all查询模式,并且支持多种api,
2021-02-03 08:27:20 +08:00
支持多种查询包括```join,group by,max,count,min,avg,sum``` ...等一系列查询,之后可能会添加更多支持,目前该库的使用非常简单,基本上就是针对IQueryable的扩展为了保证
2021-02-02 21:44:47 +08:00
该库的简介目前仅使用该库无法或者说难以实现自动建表,但是只需要配合定时任务该库即可完成24小时无人看管自动管理。该库提供了 [IShardingTableCreator](https://github.com/xuejmnet/sharding-core/blob/main/src/ShardingCore/TableCreator/IShardingTableCreator.cs)
作为建表的依赖,如果需要可以参考 [按天自动建表](https://github.com/xuejmnet/sharding-core/tree/main/samples/Samples.AutoByDate.SqlServer)
2021-08-20 23:10:34 +08:00
目前所有的demo可以参考 项目源码里面的Sample.SqlServer
2021-01-26 22:13:28 +08:00
## 概念
本库的几个简单的核心概念:
- [Tail]
2021-01-27 13:38:30 +08:00
尾巴、后缀物理表的后缀
2021-01-26 22:13:28 +08:00
- [TailPrefix]
2021-01-26 22:22:08 +08:00
尾巴前缀虚拟表和物理表的后缀中间的字符
2021-01-26 22:13:28 +08:00
- [物理表]
2021-02-02 21:44:47 +08:00
顾名思义就是数据库对应的实际表信息,表名(tablename+ tailprefix+ tail) [IPhysicTable](https://github.com/xuejmnet/sharding-core/blob/main/src/ShardingCore/Core/PhysicTables/IPhysicTable.cs)
2021-01-26 22:13:28 +08:00
- [虚拟表]
虚拟表就是系统将所有的物理表在系统里面进行抽象的一个总表对应到程序就是一个entity[IVirtualTable](https://github.com/xuejmnet/sharding-core/blob/main/src/ShardingCore/Core/VirtualTables/IVirtualTable.cs)
- [虚拟路由]
2021-03-13 14:06:54 +08:00
虚拟路由就是联系虚拟表和物理表的中间介质,虚拟表在整个程序中只有一份,那么程序如何知道要查询系统哪一张表呢,最简单的方式就是通过虚拟表对应的路由[IVirtualTableRoute](https://github.com/xuejmnet/sharding-core/blob/main/src/ShardingCore/Core/VirtualRoutes/IVirtualRoute.cs)
2021-01-26 22:13:28 +08:00
,由于基本上所有的路由都是和业务逻辑相关的所以虚拟路由由用户自己实现,该框架提供一个高级抽象
2021-02-02 21:44:47 +08:00
## 优点
2021-08-20 23:10:34 +08:00
- [支持自定义分表规则]
2021-02-02 21:44:47 +08:00
- [支持任意类型分表key]
2021-08-20 23:10:34 +08:00
- [对dbcontext扩展近乎完美]
2021-03-13 14:06:54 +08:00
- [支持分表下的连表] ```join,group by,max,count,min,avg,sum```
2021-08-20 23:10:34 +08:00
- [支持针对批处理的使用] [EFCore.BulkExtensions](https://github.com/borisdj/EFCore.BulkExtensions) ...支持efcore的扩展生态
- [提供多种默认分表规则路由] 按时间,按取模 可自定义
2021-02-02 21:44:47 +08:00
- [针对分页进行优化] 大页数跳转支持低内存流式处理
## 缺点
2021-08-23 10:23:48 +08:00
- [暂不支持分库]の
2021-02-02 21:44:47 +08:00
- [消耗连接]出现分表与分表对象进行join如果条件没法索引到具体表会生成```笛卡尔积```导致连接数爆炸,后期会进行针对该情况的配置
- [该库比较年轻] 可能会有一系列bug或者单元测试不到位的情况,但是只要你在群里或者提了issues我会尽快解决
2021-01-26 22:15:41 +08:00
## 安装
```xml
2021-08-26 09:01:07 +08:00
<PackageReference Include="ShardingCore" Version="LastVersion" />
or
2021-08-26 09:01:07 +08:00
<PackageReference Include="ShardingCore" Version="LastVersion" />
or
2021-08-26 09:01:07 +08:00
<PackageReference Include="ShardingCore" Version="LastVersion" />
2021-01-26 22:15:41 +08:00
```
2021-01-26 22:13:28 +08:00
## 配置
2021-01-27 13:38:30 +08:00
配置entity 推荐 [fluent api](https://docs.microsoft.com/en-us/ef/core/modeling/) 可以实现自动建表功能
2021-03-22 10:09:41 +08:00
`IShardingTable`数据库对象必须继承该接口
`ShardingTableKey`分表字段需要使用该特性
2021-01-26 22:22:08 +08:00
```c#
2021-03-13 14:06:54 +08:00
public class SysUserMod:IShardingTable
2021-01-26 22:22:08 +08:00
{
/// <summary>
2021-02-02 21:44:47 +08:00
/// 用户Id用于分表
2021-01-26 22:22:08 +08:00
/// </summary>
2021-03-13 14:06:54 +08:00
[ShardingTableKey]
2021-01-26 22:22:08 +08:00
public string Id { get; set; }
/// <summary>
2021-02-02 21:44:47 +08:00
/// 用户名称
2021-01-26 22:22:08 +08:00
/// </summary>
public string Name { get; set; }
/// <summary>
2021-02-02 21:44:47 +08:00
/// 用户姓名
2021-01-26 22:22:08 +08:00
/// </summary>
public int Age { get; set; }
}
```
2021-02-02 21:44:47 +08:00
创建virtual route
2021-03-13 14:06:54 +08:00
实现 `AbstractShardingOperatorVirtualTableRoute<T, TKey>`
2021-02-02 21:44:47 +08:00
抽象,或者实现系统默认的虚拟路由
2021-01-27 13:38:30 +08:00
框架默认有提供几个简单的路由 [默认路由](#默认路由)
2021-01-26 22:13:28 +08:00
```c#
2021-03-13 14:06:54 +08:00
public class SysUserModVirtualTableRoute : AbstractSimpleShardingModKeyStringVirtualRoute<SysUserMod>
2021-01-26 22:13:28 +08:00
{
2021-03-13 14:06:54 +08:00
public SysUserModVirtualTableRoute() : base(2,3)
2021-02-02 21:44:47 +08:00
{
}
}
2021-01-26 22:13:28 +08:00
```
2021-08-20 23:10:34 +08:00
创建DbContext必须继承IShardingTableDbContext
```c#
public class DefaultTableDbContext: DbContext,IShardingTableDbContext
{
public DefaultTableDbContext(DbContextOptions<DefaultTableDbContext> options) :base(options)
{
}
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
base.OnModelCreating(modelBuilder);
modelBuilder.ApplyConfiguration(new SysUserModMap());
modelBuilder.ApplyConfiguration(new SysTestMap());
}
public IRouteTail RouteTail { get; set; }
2021-08-20 23:10:34 +08:00
}
```
创建分表DbContext必须继承AbstractShardingDbContext<DefaultTableDbContext>其中DefaultTableDbContext是你刚才建立的就是如果你分表了你真正获取对象是通过哪个dbcontext
```c#
public class DefaultShardingDbContext:AbstractShardingDbContext<DefaultTableDbContext>
{
public DefaultShardingDbContext(DbContextOptions<DefaultShardingDbContext> options) : base(options)
{
}
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
base.OnModelCreating(modelBuilder);
modelBuilder.ApplyConfiguration(new SysUserModMap());
modelBuilder.ApplyConfiguration(new SysTestMap());
}
public override Type ShardingDbContextType => this.GetType();
}
```
2021-01-26 22:13:28 +08:00
`Startup.cs` 下的 `ConfigureServices(IServiceCollection services)`
```c#
2021-08-20 23:10:34 +08:00
public void ConfigureServices(IServiceCollection services)
2021-03-13 14:06:54 +08:00
{
2021-08-20 23:10:34 +08:00
services.AddControllers();
//services.AddDbContext<DefaultTableDbContext>(o => o.UseSqlServer("Data Source=localhost;Initial Catalog=ShardingCoreDBxx3;Integrated Security=True"));
//添加shardingdbcontext support life scope
2021-08-21 00:09:02 +08:00
2021-08-21 13:12:44 +08:00
services.AddShardingDbContext<DefaultShardingDbContext, DefaultTableDbContext>(o => o.UseSqlServer("Data Source=localhost;Initial Catalog=ShardingCoreDBxx2;Integrated Security=True;")
,op =>
{
op.EnsureCreatedWithOutShardingTable = true;
op.CreateShardingTableOnStart = true;
op.UseShardingOptionsBuilder(
(connection, builder) => builder.UseSqlServer(connection).UseLoggerFactory(efLogger),
2021-08-28 12:30:17 +08:00
(conStr,builder) => builder.UseSqlServer(conStr).UseLoggerFactory(efLogger));//conStr不一定需要使用委托参数可以自定义来实现读写分离
2021-08-21 13:12:44 +08:00
op.AddShardingTableRoute<SysUserModVirtualTableRoute>();
});
2021-08-20 23:10:34 +08:00
}
2021-01-26 22:13:28 +08:00
```
`Startup.cs` 下的 ` Configure(IApplicationBuilder app, IWebHostEnvironment env)` 你也可以自行封装[app.UseShardingCore()](https://github.com/xuejmnet/sharding-core/blob/main/samples/Sample.SqlServer/DIExtension.cs)
```c#
var shardingBootstrapper = app.ApplicationServices.GetRequiredService<IShardingBootstrapper>();
shardingBootstrapper.Start();
```
## 使用
```c#
2021-08-20 23:10:34 +08:00
private readonly DefaultShardingDbContext _defaultShardingDbContext;
2021-01-26 22:13:28 +08:00
2021-08-20 23:10:34 +08:00
public ctor(DefaultShardingDbContext defaultShardingDbContext)
2021-01-26 22:13:28 +08:00
{
2021-08-20 23:10:34 +08:00
_defaultShardingDbContext = defaultShardingDbContext;
2021-01-26 22:13:28 +08:00
}
public async Task ToList_All()
{
2021-08-21 13:12:44 +08:00
var mods = await _virtualDbContext.Set<SysUserMod>().ToListAsync();
Assert.Equal(1000, mods.Count);
var modOrders1 = await _virtualDbContext.Set<SysUserMod>().OrderBy(o => o.Age).ToListAsync();
int ascAge = 1;
foreach (var sysUserMod in modOrders1)
{
Assert.Equal(ascAge, sysUserMod.Age);
ascAge++;
}
var modOrders2 = await _virtualDbContext.Set<SysUserMod>().OrderByDescending(o => o.Age).ToListAsync();
int descAge = 1000;
foreach (var sysUserMod in modOrders2)
{
Assert.Equal(descAge, sysUserMod.Age);
descAge--;
}
2021-01-26 22:13:28 +08:00
}
```
2021-02-02 21:44:47 +08:00
更多操作可以参考单元测试
2021-01-26 22:13:28 +08:00
## Api
2021-08-20 23:10:34 +08:00
方法 | Method | [Unit Test](https://github.com/xuejmnet/sharding-core/blob/main/test/ShardingCore.Test50/ShardingTest.cs)
--- |--- |---
获取集合 |ToListAsync |yes
第一条 |FirstOrDefaultAsync |yes
最大 |MaxAsync |yes
最小 |MinAsync |yes
是否存在 |AnyAsync |yes
数目 |CountAsync |yes
数目 |LongCountAsync |yes
求和 |SumAsync |yes
平均 |AverageAsync |yes
包含 |ContainsAsync |yes
分组 |GroupByAsync |yes
2021-01-27 13:38:30 +08:00
## 默认路由
抽象abstract | 路由规则 | tail | 索引
--- |--- |--- |---
2021-03-13 14:06:54 +08:00
AbstractSimpleShardingModKeyIntVirtualTableRoute |取模 |0,1,2... | `=`
AbstractSimpleShardingModKeyStringVirtualTableRoute |取模 |0,1,2... | `=`
AbstractSimpleShardingDayKeyDateTimeVirtualTableRoute |按时间 |yyyyMMdd | `>,>=,<,<=,=,contains`
AbstractSimpleShardingDayKeyLongVirtualTableRoute |按时间戳 |yyyyMMdd | `>,>=,<,<=,=,contains`
AbstractSimpleShardingWeekKeyDateTimeVirtualTableRoute |按时间 |yyyyMMdd_dd | `>,>=,<,<=,=,contains`
AbstractSimpleShardingWeekKeyLongVirtualTableRoute |按时间戳 |yyyyMMdd_dd | `>,>=,<,<=,=,contains`
AbstractSimpleShardingMonthKeyDateTimeVirtualTableRoute |按时间 |yyyyMM | `>,>=,<,<=,=,contains`
AbstractSimpleShardingMonthKeyLongVirtualTableRoute |按时间戳 |yyyyMM | `>,>=,<,<=,=,contains`
AbstractSimpleShardingYearKeyDateTimeVirtualTableRoute |按时间 |yyyy | `>,>=,<,<=,=,contains`
AbstractSimpleShardingYearKeyLongVirtualTableRoute |按时间戳 |yyyy | `>,>=,<,<=,=,contains`
2021-01-27 13:38:30 +08:00
注:`contains`表示为`o=>ids.contains(o.shardingkey)`
2021-08-29 11:12:57 +08:00
注:使用默认的按时间分表的路由规则会让你重写一个GetBeginTime的方法这个方法必须使用静态值如:new DateTime(2021,1,1)不可以用动态值比如DateTime.Now因为每次重新启动都会调用该方法动态情况下会导致每次都不一致
2021-01-27 13:38:30 +08:00
#高级
2021-02-02 21:44:47 +08:00
## 批量操作
批量操作将对应的dbcontext和数据进行分离由用户自己选择第三方框架比如zzz进行批量操作或者batchextension
```c#
2021-08-20 23:10:34 +08:00
后期支持
```
2021-02-02 21:44:47 +08:00
## 手动路由
```c#
2021-08-26 09:01:07 +08:00
ctor inject IShardingRouteManager shardingRouteManager
public class SysUserModVirtualTableRoute : AbstractSimpleShardingModKeyStringVirtualTableRoute<SysUserMod>
{
/// <summary>
/// 开启提示路由
/// </summary>
protected override bool EnableHintRoute => true;
protected override bool EnableAssertRoute => true;
public SysUserModVirtualTableRoute() : base(2,3)
{
}
}
using (_shardingRouteManager.CreateScope())
{
_shardingRouteManager.Current.TryCreateOrAddMustTail<SysUserMod>("00");
var mod00s = await _defaultTableDbContext.Set<SysUserMod>().Skip(10).Take(11).ToListAsync();
}
2021-02-02 21:44:47 +08:00
```
## 自动建表
[参考](https://github.com/xuejmnet/sharding-core/tree/main/samples/Samples.AutoByDate.SqlServer)
## 事务
2021-08-28 14:42:26 +08:00
默认savechanges支持事务
2021-02-02 21:44:47 +08:00
```c#
2021-08-20 23:10:34 +08:00
await _defaultShardingDbContext.SaveChangesAsync();
2021-02-02 21:44:47 +08:00
```
## 读写分离
该框架目前已经支持单node的读写分离,后续框架将支持多node的读
```c#
services.AddShardingDbContext<ShardingDefaultDbContext, DefaultDbContext>(o => o.UseSqlServer(hostBuilderContext.Configuration.GetSection("SqlServer")["ConnectionString"])
,op =>
{
op.EnsureCreatedWithOutShardingTable = true;
op.CreateShardingTableOnStart = true;
2021-08-23 08:18:17 +08:00
op.UseShardingOptionsBuilder((connection, builder) => builder.UseSqlServer(connection).UseLoggerFactory(efLogger),
(conStr,builder)=> builder.UseSqlServer("read db connection string").UseLoggerFactory(efLogger));
op.AddShardingTableRoute<SysUserModVirtualTableRoute>();
op.AddShardingTableRoute<SysUserSalaryVirtualTableRoute>();
});
```
2021-02-02 21:44:47 +08:00
2021-09-03 22:40:22 +08:00
## 高性能分页
sharding-core本身使用流式处理获取数据在普通情况下和单表的差距基本没有,但是在分页跳过X页后,性能会随着X的增大而减小O(n)
目前该框架已经实现了一套高性能分页可以根据用户配置,实现分页功能。
支持版本`x.2.0.16+`
1.如何开启分页配置 比如我们针对用户月新表进行分页配置,先实现`IPaginationConfiguration<>`接口,该接口是分页配置接口
```c#
public class SysUserSalaryPaginationConfiguration:IPaginationConfiguration<SysUserSalary>
{
public void Configure(PaginationBuilder<SysUserSalary> builder)
{
builder.PaginationSequence(o => o.Id)
.UseTailCompare(Comparer<string>.Default)
.UseQueryMatch(PaginationMatchEnum.Owner | PaginationMatchEnum.Named | PaginationMatchEnum.PrimaryMatch);
builder.PaginationSequence(o => o.DateOfMonth)
.UseQueryMatch(PaginationMatchEnum.Owner | PaginationMatchEnum.Named | PaginationMatchEnum.PrimaryMatch).UseAppendIfOrderNone(10);
builder.PaginationSequence(o => o.Salary)
.UseQueryMatch(PaginationMatchEnum.Owner | PaginationMatchEnum.Named | PaginationMatchEnum.PrimaryMatch).UseAppendIfOrderNone();
builder.ConfigReverseShardingPage(0.5d,10000L);
}
}
```
2.添加配置
在对应的用户月薪路由中添加配置
```c#
public override IPaginationConfiguration<SysUserSalary> CreatePaginationConfiguration()
{
return new SysUserSalaryPaginationConfiguration();
}
```
3.Configure内部为什么意思?
1) builder.PaginationSequence(o => o.Id) 配置当分页orderby 字段为Id时那么分表所对应的表结构为顺序,顺序的规则通过`UseTailCompare`来设置,其中string为表tail,
具体什么意思就是说如果本次分页设计3张表分别是table1,table2,table3,如果我没配置id的情况下那么需要查询3张表然后分别进行流式聚合,如果我配置了id的情况下,如果本次sql查询带上了id作为order by字段
那么就不需要分别查询3张表,可以直接查询table1如果table1的count大于你要跳过的页数,假设分页查询先查询多少条,table1:100条,table2:200条,table3:300条
如果你要跳过90条获取10条原先的时间就是O(100)现在的时间就是O(10)因为table1跳过了90条还剩余10条;
2) `UseQueryMatch`是什么意思,这个就是表示你要匹配的规则,是必须是当前这个类下的属性还是说只需要排序名称一样即可,因为有可能select new{}匿名对象类型就会不一样,`PrimaryMatch`表示是否只需要第一个主要的
orderby匹配上就行了,`UseAppendIfOrderNone`表示是否需要开启在没有对应order查询条件的前提下添加本属性排序,这样可以保证顺序排序性能最优
3) `builder.ConfigReverseShardingPage` 表示是否需要启用反向排序,因为正向排序在skip过多后会导致需要跳过的数据过多,尤其是最后几页,如果开启其实最后几页就是前几页的反向排序,其中第一个参数表示跳过的因子,就是说
skip必须大于分页总total*该因子(0-1的double),第二个参数表示最少需要total多少条必须同时满足两个条件才会开启(必须大于500),并且反向排序优先级低于顺序排序,
4.如何使用
```c#
var shardingPageResultAsync = await _defaultTableDbContext.Set<SysUserMod>().OrderBy(o=>o.Age).ToShardingPageAsync(pageIndex, pageSize);
```
### 注意:如果你是按时间排序无论何种排序建议开启并且加上时间顺序排序,如果你是取模或者自定义分表,建议将Id作为顺序排序,如果没有特殊情况请使用id排序并且加上反向排序作为性能优化
2021-02-02 21:44:47 +08:00
# 注意事项
2021-08-20 23:10:34 +08:00
该库的追踪是基于adonet的MARS(MultipleActiveResultSets=True;)所以基本不支持该特性的无法支持完美追踪
,目前框架采用AppDomain.CurrentDomain.GetAssemblies();
2021-02-02 21:44:47 +08:00
可能会导致程序集未被加载所以尽可能在api层加载所需要的dll
2021-02-03 09:53:07 +08:00
使用时需要注意
2021-08-20 23:10:34 +08:00
- 实体对象是否继承`IShardingTable`
2021-02-03 09:53:07 +08:00
- 实体对象是否有`ShardingKey`
- 实体对象是否已经实现了一个虚拟路由
- startup是否已经添加虚拟路由
2021-08-20 23:10:34 +08:00
- startup是否已经添加bootstrapper.start()
2021-02-03 09:53:07 +08:00
2021-08-21 13:12:44 +08:00
```c#添加追踪
2021-08-21 09:10:52 +08:00
var sresult = _defaultTableDbContext.Set<SysUserMod>().ToList();
var sysUserMod98 = result.FirstOrDefault(o => o.Id == "98");
2021-08-21 13:12:44 +08:00
_defaultTableDbContext.Attach(sysUserMod98);//添加追踪
2021-08-21 09:10:52 +08:00
sysUserMod98.Name = "name_update"+new Random().Next(1,99)+"_98";
await _defaultTableDbContext.SaveChangesAsync();
--log info
2021-08-23 10:23:48 +08:00
Executed DbCommand (1ms) [Parameters=[@p1='?' (Size = 128), @p0='?' (Size = 128)], CommandType='Text', CommandTimeout='30']
SET NOCOUNT ON;
UPDATE [SysUserMod_02] SET [Name] = @p0
WHERE [Id] = @p1;
SELECT @@ROWCOUNT;
2021-08-21 09:10:52 +08:00
```
2021-08-21 00:13:47 +08:00
2021-02-02 21:44:47 +08:00
# 计划
- [提供官网如果该项目比较成功的话]
- [开发更完善的文档]
- [支持分库]
2021-08-20 23:10:34 +08:00
- [支持更多数据库查询完善]
2021-01-27 13:38:30 +08:00
# 最后
2021-02-04 16:42:49 +08:00
该框架借鉴了大部分分表组件的思路,目前提供的接口都已经实现,并且支持跨表查询,基于分页查询该框架也使用了流式查询保证不会再skip大数据的时候内存会爆炸,目前这个库只是一个刚刚成型的库还有很多不完善的地方希望大家多多包涵,如果喜欢的话也希望大家给个star.
2021-02-02 21:57:02 +08:00
该文档是我晚上赶工赶出来的也想趁热打铁希望更多的人关注,也希望更多的人可以交流。
2021-01-27 13:38:30 +08:00
凭借各大开源生态圈提供的优秀代码和思路才有的这个框架,希望可以为.Net生态提供一份微薄之力,该框架本人会一直长期维护,有大神技术支持可以联系下方方式欢迎star :)
2021-02-03 07:51:44 +08:00
[博客](https://www.cnblogs.com/xuejiaming)
2021-01-27 13:38:30 +08:00
QQ群:771630778
个人QQ:326308290(欢迎技术支持提供您宝贵的意见)
个人邮箱:326308290@qq.com