mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-05 08:37:25 +08:00
Update README.md
This commit is contained in:
parent
f75ce1d544
commit
6650946e64
@ -152,3 +152,11 @@ db.Queryable<OrderItem, Order>((i, o) => i.OrderId == o.Id)
|
||||
//( [i].[OrderId] <> @OrderId0 ) AND ([o].[Name] like '%'+@MethodConst1+'%')
|
||||
|
||||
```
|
||||
|
||||
### Feature7 Insert or update
|
||||
```cs
|
||||
var x = Db.Storageable(list2).ToStorage();
|
||||
x.AsInsertable.ExecuteCommand();
|
||||
x.AsUpdateable.ExecuteCommand();
|
||||
```
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user