mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-08-23 22:11:36 +08:00
Update demo
This commit is contained in:
parent
3e75003a34
commit
18d4e8a2e4
@ -83,6 +83,9 @@ namespace OrmTest
|
||||
db.Queryable<Order>().LeftJoin<Order>((x, y) => x.Id == y.Id).Where(x=>x.Id==1).ToList();
|
||||
db.Queryable<Order>().LeftJoin<Order>((x, y) => x.Id == y.Id).ToList();
|
||||
db.Queryable<Order>().LeftJoin<Custom>((x, y) => x.Id == y.Id).ToList();
|
||||
db.Queryable<Order>()
|
||||
.LeftJoin<Custom>((x, y) => x.Id == y.Id)
|
||||
.LeftJoin<Custom>((x, y,z) => x.Id == y.Id).ToList();
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user