mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-05 17:37:58 +08:00
Add unit test
This commit is contained in:
parent
c7d8fef48f
commit
0353880184
@ -31,6 +31,9 @@ namespace OrmTest
|
||||
{
|
||||
throw new Exception("unit error");
|
||||
}
|
||||
var q=db.Queryable<Order>().Select(it => new { id = it.Id });
|
||||
var q2 = db.Queryable<Order>().Select(it => new { id = 1 });
|
||||
var list=db.UnionAll(q, q2).ToList();
|
||||
}
|
||||
public class UintAnyModel
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user