Add user test case

This commit is contained in:
sunkaixuan 2024-08-12 17:39:58 +08:00
parent 68706d7d79
commit 124c8bd09f
2 changed files with 53 additions and 0 deletions

View File

@ -33,6 +33,7 @@ namespace OrmTest
}
public static void Init()
{
UnitSplitadfaf1.Init();
Unitaadfas1.Init();
Unitadfasda.Init();
Unita3affafa.Init();

View File

@ -0,0 +1,52 @@
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OrmTest
{
internal class UnitSplitadfaf1
{
public static void Init()
{
var db = NewUnitTest.Db;
db.CodeFirst.InitTables<SplitTableDemo>();
db.Insertable(new SplitTableDemo() { Name = "a", Time = DateTime.Now, Pk = Guid.NewGuid() })
.SplitTable().ExecuteCommand();
var list=db.Queryable<SplitTableDemo>().SplitTable()
.Select<SplitTableDemoDto>().ToList();
if (list.First().Time == DateTime.MinValue)
{
throw new Exception("unit eror");
}
}
// Entity class representing the split table
// 代表分表的实体类
[SplitTable(SplitType.Day)] // Specify the split type as "Day"
// 指定分表类型为“Day”
[SqlSugar.SugarTable("UnitSplit1231_{year}{month}{day}")] // Specify the table name pattern
// 指定表名模式
public class SplitTableDemo
{
[SugarColumn(IsPrimaryKey = true)] // Specify primary key
// 指定主键
public Guid Pk { get; set; }
[SugarColumn(IsNullable = true, ColumnName = "x_name")]
public string Name { get; set; }
[SugarColumn(IsNullable = true,ColumnName ="x_time")]
[SplitField] // Mark the field as a split field
// 将字段标记为分表字段
public DateTime Time { get; set; }
}
public class SplitTableDemoDto
{
public DateTime Time { get; set; }
}
}
}