This commit is contained in:
sunkaixuan 2023-04-24 17:44:57 +08:00
parent ce37641174
commit 2531eb8115

View File

@ -66,8 +66,11 @@ namespace OrmTest
var result8 = db.Updateable<Order>(it => it.Name == "Name" + "1").Where(it => it.Id == 1).ExecuteCommand();
var result81 = db.Updateable<Order>().SetColumns(it => it.Name == "Name" + "1").Where(it => it.Id == 1).ExecuteCommand();
//
var result61 = db.Updateable<Order>()
.InnerJoin<Custom>((x, y) => x.CustomId == y.Id)
.SetColumns((x, y) => new Order() { Name = y.Name, Price = y.Id })
.Where((x, y) => x.Id == 1)
.ExecuteCommand();
/*** 3.by Dictionary ***/