diff --git a/Src/Asp.Net/PgSqlTest/Demo/Demo2_Updateable.cs b/Src/Asp.Net/PgSqlTest/Demo/Demo2_Updateable.cs index 087baf174..84f2eb43b 100644 --- a/Src/Asp.Net/PgSqlTest/Demo/Demo2_Updateable.cs +++ b/Src/Asp.Net/PgSqlTest/Demo/Demo2_Updateable.cs @@ -69,9 +69,12 @@ namespace OrmTest .SetColumns(it => it.CreateTime == DateTime.Now) .Where(it => it.Id == 1).ExecuteCommand(); // - - - + var result61 = db.Updateable() + .InnerJoin((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 ***/ var dt = new Dictionary();