mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2026-02-27 16:50:33 +08:00
Add unit test
This commit is contained in:
@@ -103,6 +103,7 @@
|
||||
<Compile Include="Models\Tree.cs" />
|
||||
<Compile Include="Models\ViewOrder.cs" />
|
||||
<Compile Include="Config.cs" />
|
||||
<Compile Include="UnitTest\UnitPgSplit.cs" />
|
||||
<Compile Include="UnitTest\UJsonFunc.cs" />
|
||||
<Compile Include="UnitTest\UCustom013.cs" />
|
||||
<Compile Include="UnitTest\UCustom07.cs" />
|
||||
|
||||
@@ -31,6 +31,7 @@ namespace OrmTest
|
||||
}
|
||||
public static void Init()
|
||||
{
|
||||
UnitPgSplit.Init();
|
||||
UJsonFunc.Init();
|
||||
UnitTestReturnPkList.Init();
|
||||
UCustom07.Init();
|
||||
|
||||
79
Src/Asp.Net/PgSqlTest/UnitTest/UnitPgSplit.cs
Normal file
79
Src/Asp.Net/PgSqlTest/UnitTest/UnitPgSplit.cs
Normal file
@@ -0,0 +1,79 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using SqlSugar;
|
||||
namespace OrmTest {
|
||||
public class UnitPgSplit
|
||||
{
|
||||
public static void Init()
|
||||
{
|
||||
var db = NewUnitTest.Db;
|
||||
|
||||
db.Insertable(new SysTest() { CName = "a", Name = "a", Status = OrderStatus.Todo }).SplitTable().ExecuteReturnSnowflakeId();
|
||||
db.Updateable(new List<SysTest>() {
|
||||
new SysTest() { CName = "b", Name = "b" }
|
||||
})
|
||||
.UpdateColumns(x => x.Status).SplitTable(it=>it.Take(3))
|
||||
.ExecuteCommand();
|
||||
}
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// 测试表1
|
||||
/// </summary>
|
||||
[SplitTable(SplitType.Year)]//按年分表 (自带分表支持 年、季、月、周、日)
|
||||
[SugarTable("sys_test1111_{year}{month}{day}")]
|
||||
public class SysTest
|
||||
{
|
||||
/// <summary>
|
||||
/// 主键Id
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnDescription = "Id主键", IsPrimaryKey = true)]
|
||||
public virtual long Id { get; set; }
|
||||
/// <summary>
|
||||
/// 名称
|
||||
/// </summary>
|
||||
public string Name { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 中文名
|
||||
/// </summary>
|
||||
public string CName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
///状态
|
||||
/// </summary>
|
||||
public OrderStatus Status { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 工单状态
|
||||
/// </summary>
|
||||
[Description("工单状态")]
|
||||
public enum OrderStatus
|
||||
{
|
||||
/// <summary>
|
||||
/// 待办
|
||||
/// </summary>
|
||||
[Description("待办")]
|
||||
Todo = 0,
|
||||
/// <summary>
|
||||
/// 进行中
|
||||
/// </summary>
|
||||
[Description("进行中")]
|
||||
Doing = 1,
|
||||
/// <summary>
|
||||
/// 完成
|
||||
/// </summary>
|
||||
[Description("完成")]
|
||||
Done = 2,
|
||||
/// <summary>
|
||||
/// 超时完成
|
||||
/// </summary>
|
||||
[Description("超时完成")]
|
||||
TimeOut = 3,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user