Update DuckDb

This commit is contained in:
sunkaixuan
2025-04-20 18:34:28 +08:00
parent 4876fc8f9d
commit 281cd86f2f
5 changed files with 16 additions and 16 deletions

View File

@@ -54,10 +54,7 @@ namespace OrmTest
var result7 = db.Updateable(updateObj)
.IgnoreColumns(ignoreAllNullColumns: true, ignoreAllDefaultValue:true)
.ExecuteCommand();
// 使用最快的方式批量更新实体对象列表Bulk update a list of entity objects using the fastest method
var result8 = db.Fastest<StudentWithSnowflake>().BulkUpdate(updateObjs);
/***************************表达式更新 (Expression Update)***************************/
// 使用表达式更新实体对象的指定列Update specific columns of the entity object using expressions