From 9a537821c170a73d2455f1079aab57bf6ebcc8f4 Mon Sep 17 00:00:00 2001 From: sunkaixuan <610262374@qq.com> Date: Tue, 1 Apr 2025 20:20:02 +0800 Subject: [PATCH] Add demo --- .../UserTestCases/UnitTest/Main.cs | 1 + .../UserTestCases/UnitTest/Unitdfadsysss.cs | 82 +++++++++++++++++++ 2 files changed, 83 insertions(+) create mode 100644 Src/Asp.NetCore2/SqlSeverTest/UserTestCases/UnitTest/Unitdfadsysss.cs diff --git a/Src/Asp.NetCore2/SqlSeverTest/UserTestCases/UnitTest/Main.cs b/Src/Asp.NetCore2/SqlSeverTest/UserTestCases/UnitTest/Main.cs index 249005f99..0fe81843f 100644 --- a/Src/Asp.NetCore2/SqlSeverTest/UserTestCases/UnitTest/Main.cs +++ b/Src/Asp.NetCore2/SqlSeverTest/UserTestCases/UnitTest/Main.cs @@ -33,6 +33,7 @@ namespace OrmTest } public static void Init() { + Unitsdfadsfsys.Init(); Unitadfasdysss.Init(); Unitdfafassfa.Init(); Unitasdfays.Init(); diff --git a/Src/Asp.NetCore2/SqlSeverTest/UserTestCases/UnitTest/Unitdfadsysss.cs b/Src/Asp.NetCore2/SqlSeverTest/UserTestCases/UnitTest/Unitdfadsysss.cs new file mode 100644 index 000000000..1714bd899 --- /dev/null +++ b/Src/Asp.NetCore2/SqlSeverTest/UserTestCases/UnitTest/Unitdfadsysss.cs @@ -0,0 +1,82 @@ +using SqlSugar; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace OrmTest +{ + internal class Unitsdfadsfsys + { + // Method for initialization and testing of split tables + // 用于初始化和测试分表的方法 + public static void Init() + { + // Obtain a new instance of SqlSugarClient + // 获取 SqlSugarClient 的新实例 + SqlSugarClient db = NewUnitTest.Db; + db.Aop.DataExecuting = (oldValue, entityInfo) => + { + if (entityInfo.PropertyName == "Name") + { + entityInfo.SetValue(oldValue + "1"); + } + }; + + db.CodeFirst.InitTables(); + db.DbMaintenance.TruncateTable(); + + // 实体变化同步表结构 + db.CodeFirst.SplitTables().InitTables(); + + db.DbMaintenance.TruncateTable(); + + db.Insertable(new SplitTableDemo() { Name = "jack", Time = DateTime.Now }).SplitTable().ExecuteCommand(); + + db.Insertable( + new SplitTableDemo() { Name = "lilei", Time = DateTime.Now } ).SplitTable().ExecuteCommandAsync().GetAwaiter().GetResult(); + + // Query records from the split table within a specified date range + // 在指定日期范围内从分表查询记录 + var list = db.Queryable() + .SplitTable() + .ToList(); + + if (list.First().Name != "jack1"|| list.Last().Name != "lilei1") + { + throw new Exception("unit error"); + } + + db.Insertable(new Unitsdfay() { Name = "a" }).ExecuteCommand(); + if (db.Queryable().First().Name != "a1") + { + throw new Exception("unit error"); + } + } + + public class Unitsdfay + { + public string Name { get; set; } + } + + // Entity class representing the split table + // 代表分表的实体类 + [SplitTable(SplitType.Day)] // Specify the split type as "Day" + // 指定分表类型为“Day” + [SqlSugar.SugarTable("UnitlsdafaitTableDemo_{year}{month}{day}")] // Specify the table name pattern + // 指定表名模式 + public class SplitTableDemo + { + [SugarColumn(IsPrimaryKey = true)] // Specify primary key + // 指定主键 + public Guid Pk { get; set; } + public string Name { get; set; } + + [SugarColumn(IsNullable = true)] + [SplitField] // Mark the field as a split field + // 将字段标记为分表字段 + public DateTime Time { get; set; } + } + } +} \ No newline at end of file