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
d03c17c29c
commit
c00c49e93f
@ -58,6 +58,9 @@ namespace OrmTest
|
||||
var list=db.Queryable<UpperOrder, UpperOrder>((X1,Y1)=>new JoinQueryInfos(
|
||||
JoinType.Left,X1.Id==Y1.Id
|
||||
) ).ToList();
|
||||
|
||||
var list3 = db.Queryable<UpperOrder, UpperOrder>((X1, Y1) => X1.Id == Y1.Id)
|
||||
.Select(X1 => X1).ToList();
|
||||
}
|
||||
public class UpperOrder
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user