mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-08-23 22:11:36 +08:00
Add unit test
This commit is contained in:
parent
fecb5b6ed1
commit
0813e90e95
@ -1,4 +1,5 @@
|
|||||||
using System;
|
using SqlSugar;
|
||||||
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
@ -45,6 +46,11 @@ namespace OrmTest
|
|||||||
{
|
{
|
||||||
throw new Exception("unit error");
|
throw new Exception("unit error");
|
||||||
}
|
}
|
||||||
|
var conditions = new List<IConditionalModel>() { new ConditionalModel { FieldName = "name", FieldValue = "x", ConditionalType = ConditionalType.Equal } };
|
||||||
|
var conditions2 = new List<IConditionalModel>() { new ConditionalModel { FieldName = "name", FieldValue = "x2", ConditionalType = ConditionalType.Equal } };
|
||||||
|
var list2=db.Queryable<Order>()
|
||||||
|
.Where(conditions).MergeTable()
|
||||||
|
.Where(conditions2).ToList();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static object MyToString() { return null; }
|
public static object MyToString() { return null; }
|
||||||
|
Loading…
Reference in New Issue
Block a user