Update dm

This commit is contained in:
sunkaixuan
2023-01-07 11:53:22 +08:00
parent cfc1c4f28d
commit b71b413c96
2 changed files with 2 additions and 1 deletions

View File

@@ -43,6 +43,7 @@ namespace OrmTest
//update all columns by primary key
var result = db.Updateable(updateObj).ExecuteCommand();//update single
var result2 = db.Updateable(updateObjs).ExecuteCommand();//update List<Class>
var result21 = db.Updateable(new List<Order>() { }).ExecuteCommand();
//Ignore Name and Price
var result3 = db.Updateable(updateObj).IgnoreColumns(it => new { it.CreateTime, it.Price }).ExecuteCommand();