From d52effcc1eeb75059a829870fd6aa01f9dd27983 Mon Sep 17 00:00:00 2001
From: xuejmnet <326308290@qq.com>
Date: Tue, 26 Jan 2021 22:13:28 +0800
Subject: [PATCH] =?UTF-8?q?=E7=BC=96=E5=86=99readme?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
README.md | 205 +++++++++++++++++++++++++++++++++++++++++++++++++++---
1 file changed, 196 insertions(+), 9 deletions(-)
diff --git a/README.md b/README.md
index 003a9824..2cfbe5aa 100644
--- a/README.md
+++ b/README.md
@@ -1,17 +1,204 @@
ShardingCore
-ShardingCore 是一个支持efcore 2.x 3.x 5.x的一个对于数据库分表的一个简易扩展,
+`ShardingCore` 是一个支持efcore 2.x 3.x 5.x的一个对于数据库分表的一个简易扩展,
目前该库暂未支持分库(未来会支持),仅支持分表,该项目的理念是让你可以已最少的代码量来实现自动分表的实现,经过多个开源项目的摸索参考目前正式开源本项目
-- [特性](#特性)
+### 依赖
+
+Release | EF Core | .NET Standard | .NET (Core)
+--- | --- | --- | ---
+[5.x.x.x](https://www.nuget.org/packages/ShardingCore/5.0.0.1) | > =5.0.x | 2.1 | 3.0+
+[3.x.x.x](https://www.nuget.org/packages/ShardingCore/3.0.0.1) | 3.1.10 | 2.0 | 2.0+
+[2.x.x.x](https://www.nuget.org/packages/ShardingCore/2.0.0.1) | 2.2.6 | 2.0 | 2.0+
+
+### Support Sharding Method 支持的分表方式
+
+Support
+Any
+Method
+and
+Support
+Any
+ShardingKey
+not
+provide
+job
+but
+provider
+create
+table
+interface [IShardingTableCreator](https://github.com/xuejmnet/sharding-core/blob/main/src/ShardingCore/TableCreator/IShardingTableCreator.cs)
+simple
+job [ChronusJob](https://github.com/xuejmnet/ChronusJob)
+support
+cron
+expression
+
+方法 |Method | Support | ShardingKey Type
+--- |--- | --- | ---
+取模 |Sharding Mod | Yes | Any ClrType
+大数取模范围 |Sharding Range | Yes | Any ClrType
+按天/周/月/年... |Sharding By Day/Week/Month/Year... | Yes | Any ClrType
+按任意方式分表 |Sharding By Customer | Yes | Any ClrType
+
- [开始](#开始)
- - [准备](#准备)
+ - [概念](#概念)
- [配置](#配置)
- [使用](#使用)
- - [按时间自动分表](#按时间自动分表)
- - [性能测试](#性能测试)
- - [其它简单操作(非Sharing)](#其它简单操作非sharing)
+ - [Api](#Api)
- [高级配置](#高级配置)
- - [多主键等配置](#多主键等配置)
- - [读写分离](#读写分离)
+ - [手动路由](#手动路由)
+ - [自动建表](#自动建表)
- [注意事项](#注意事项)
-- [总结](#总结)
\ No newline at end of file
+- [总结](#总结)
+
+# 开始
+
+以下所有例子都以Sql
+Server为例
+
+## 概念
+
+本库的几个简单的核心概念:
+
+- [Tail]
+ 尾巴、后缀虚拟表和物理表的后缀
+- [TailPrefix]
+ 尾巴、后缀虚拟表和物理表的后缀中间的字符
+- [物理表]
+ 顾名思义就是数据库对应的实际表信息,表名(
+ tablename
+ +
+ tailprefix
+ +
+ tail) [IPhysicTable](https://github.com/xuejmnet/sharding-core/blob/main/src/ShardingCore/Core/PhysicTables/IPhysicTable.cs)
+- [虚拟表]
+ 虚拟表就是系统将所有的物理表在系统里面进行抽象的一个总表对应到程序就是一个entity[IVirtualTable](https://github.com/xuejmnet/sharding-core/blob/main/src/ShardingCore/Core/VirtualTables/IVirtualTable.cs)
+- [虚拟路由]
+ 虚拟路由就是联系虚拟表和物理表的中间介质,虚拟表在整个程序中只有一份,那么程序如何知道要查询系统哪一张表呢,最简单的方式就是通过虚拟表对应的路由[IVirtualRoute](https://github.com/xuejmnet/sharding-core/blob/main/src/ShardingCore/Core/VirtualRoutes/IVirtualRoute.cs)
+ ,由于基本上所有的路由都是和业务逻辑相关的所以虚拟路由由用户自己实现,该框架提供一个高级抽象
+
+## 配置
+
+创建virtual
+route
+实现 `AbstractShardingOperatorVirtualRoute`
+接口
+框架默认有提供几个简单的路由 `AbstractSimpleShardingModVirtualRoute`
+
+```c#
+
+ public class SysUserRangeVirtualRoute: AbstractShardingOperatorVirtualRoute
+ {
+ protected override string ConvertToShardingKey(object shardingKey);
+
+ public override string ShardingKeyToTail(object shardingKey);
+
+ public override List GetAllTails();
+
+ protected override Expression> GetRouteToFilter(string shardingKey, ShardingOperatorEnum shardingOperator);
+ }
+```
+
+- `ConvertToShardingKey`
+ 分表关键字段如何转换成对应的类型
+- `ShardingKeyToTail`
+ 分表关键字段如何转换成对应的物理表后缀
+- `GetAllTails`
+ 现在数据库已存在的尾巴有哪些
+- `GetRouteToFilter`
+ 传入分表字段返回一个如何筛选尾巴的方法
+
+`Startup.cs` 下的 `ConfigureServices(IServiceCollection services)`
+
+```c#
+
+ services.AddShardingSqlServer(o =>
+ {
+ o.ConnectionString = "Data Source=localhost;Initial Catalog=ShardingCoreDB;Integrated Security=True";
+ o.AddSharding();
+ o.CreateIfNotExists((provider, config) =>
+ {
+ config.EnsureCreated = true;
+ });
+ });
+```
+
+`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();
+ shardingBootstrapper.Start();
+```
+配置entity 推荐 fluent api 可以实现自动建表功能
+```c#
+
+ public class SysUserRange:IShardingEntity
+ {
+ ///
+ /// 分表分库range切分
+ ///
+ [ShardingKey(TailPrefix = "_",AutoCreateTableOnStart = true)]
+ public string Id { get; set; }
+ ///
+ /// 姓名
+ ///
+ public string Name { get; set; }
+ ///
+ /// 年龄
+ ///
+ public int Age { get; set; }
+ }
+
+ public class SysUserRangeMap:IEntityTypeConfiguration
+ {
+ public void Configure(EntityTypeBuilder builder)
+ {
+ builder.HasKey(o => o.Id);
+ builder.Property(o => o.Id).IsRequired().HasMaxLength(128);
+ builder.Property(o => o.Name).HasMaxLength(128);
+ builder.ToTable(nameof(SysUserRange));
+ }
+ }
+
+ private readonly IVirtualDbContext _virtualDbContext;
+
+ public ctor(IVirtualDbContext virtualDbContext)
+ {
+ _virtualDbContext = virtualDbContext;
+ }
+
+ public async Task ToList_All()
+ {
+ var ranges=await _virtualDbContext.Set().ToShardingListAsync();
+ }
+```
+
+## 使用
+```c#
+
+ private readonly IVirtualDbContext _virtualDbContext;
+
+ public ctor(IVirtualDbContext virtualDbContext)
+ {
+ _virtualDbContext = virtualDbContext;
+ }
+
+ public async Task ToList_All()
+ {
+ var ranges=await _virtualDbContext.Set().ToShardingListAsync();
+ }
+```
+
+## Api
+
+方法 |Method
+--- |---
+获取集合 |ToShardingListAsync
+第一条 |ShardingFirstOrDefaultAsync
+最大 |ShardingMaxAsync
+最小 |ShardingMinAsync
+是否存在 |ShardingAnyAsync
+分页 |ToShardingPageResultAsync
+数目 |ShardingCountAsync
+求和 |ShardingSumAsync
\ No newline at end of file