索引:
一.API 列表
1.Set<M, F>(Expression<Func<M, F>> propertyFunc, F newVal)
如: .Set(it => it.BodyMeasureProperty, "{xxx:yyy,mmm:nnn,zzz:aaa}") 用于 单表 指定字段更新
2.Set<M>(dynamic filedsObject)
用于 单表 指定多字段更新
二.API 单表-完整 方法 举例-01
// 多 字段 多 set 用法
var res1 = await Conn
.Updater<BodyFitRecord>() // 更新表 BodyFitRecord
.Set(it => it.CreatedOn, DateTime.Now) // 设置字段 CreatedOn 值
.Set(it => it.BodyMeasureProperty, "{xxx:yyy,mmm:nnn,zzz:aaa}") // 设置字段 BodyMeasureProperty 值
.Where(it => it.Id == m.Id)
.UpdateAsync();
以 MySQL 为例,生成 SQL 如下:
update `bodyfitrecord`
set `CreatedOn_col`=?CreatedOn_col_1,
`BodyMeasureProperty`=?BodyMeasureProperty_2
where `Id`=?Id_3;
三.API 单表-完整 方法 举例-02
//
var res1 = await Conn
.Updater<AgentInventoryRecord>() // 更新表 AgentInventoryRecord
.Set(new
{
TotalSaleCount = , // 更新 字段 TotalSaleCount
xxx = // 字段 xxx 在表中无对应 , 自动忽略
})
.Where(it => it.Id == Guid.Parse("032ce51f-1034-4fb2-9741-01655202ecbc"))
.UpdateAsync();
以 MySQL 为例,生成 SQL 如下:
update `agentinventoryrecord`
set `TotalSaleCount`=?TotalSaleCount_1
where `Id`=?Id_2;
四.API 单表-完整 方法 举例-03
// 要更新的 model 字段 赋值
var model = new AgentInventoryRecord();
model.TotalSaleCount = ; //
var res1 = await Conn
.Updater<AgentInventoryRecord>() //更新表 AgentInventoryRecord
.Set(new
{
model.TotalSaleCount, // 更新 字段 TotalSaleCount
xxx = // 字段 xxx 在表中无对应 ,自动忽略
})
.Where(it => it.Id == Guid.Parse("032ce51f-1034-4fb2-9741-01655202ecbc"))
.UpdateAsync();
以 MySQL 为例,生成 SQL 如下:
update `agentinventoryrecord`
set `TotalSaleCount`=?TotalSaleCount_1
where `Id`=?Id_2;
蒙
2019-04-12 17:27 周五