mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-05 17:37:58 +08:00
Add user case test
This commit is contained in:
parent
f98f932533
commit
54dc72dfe8
@ -45,6 +45,15 @@ namespace OrmTest
|
||||
Db.CodeFirst.InitTables(type);
|
||||
Db1.CodeFirst.InitTables(type);
|
||||
Console.WriteLine("Hello, World!");
|
||||
var list2 = NewUnitTest.Db.Reportable(new List<Unitguidsda>() {
|
||||
new Unitguidsda()
|
||||
}).ToQueryable().ToList();
|
||||
}
|
||||
|
||||
|
||||
public class Unitguidsda
|
||||
{
|
||||
public Guid Id { get; set; } = Guid.NewGuid();
|
||||
}
|
||||
[SugarTable("Test_Table_{year}{month}{day}")]
|
||||
[SplitTable(SplitType.Month)]
|
||||
|
@ -79,8 +79,17 @@ namespace OrmTest
|
||||
{
|
||||
throw new Exception("unit error");
|
||||
}
|
||||
}
|
||||
|
||||
var list2 = db.Reportable(new List<Unitguidsda>() {
|
||||
new Unitguidsda()
|
||||
}).ToQueryable().ToList();
|
||||
}
|
||||
|
||||
|
||||
public class Unitguidsda
|
||||
{
|
||||
public Guid Id { get; set; } = Guid.NewGuid();
|
||||
}
|
||||
public class Unitadadfafa
|
||||
{
|
||||
[SqlSugar.SugarColumn(IsPrimaryKey =true,SqlParameterDbType =typeof(CommonPropertyConvert))]
|
||||
|
@ -15,9 +15,17 @@ namespace OrmTest
|
||||
db.CodeFirst.InitTables<School>();
|
||||
db.CodeFirst.InitTables<School2>();
|
||||
db.Queryable<School2>().ToList();
|
||||
var list2 = db.Reportable(new List<Unitguidsda>() {
|
||||
new Unitguidsda()
|
||||
}).ToQueryable().ToList();
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
public class Unitguidsda
|
||||
{
|
||||
public Guid Id { get; set; } = Guid.NewGuid();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 多主键表
|
||||
/// </summary>
|
||||
|
Loading…
Reference in New Issue
Block a user