mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-23 04:23:47 +08:00
Update demo
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user