mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-05 17:37:58 +08:00
Update README.md
This commit is contained in:
parent
6650946e64
commit
a21b994af4
@ -153,10 +153,16 @@ db.Queryable<OrderItem, Order>((i, o) => i.OrderId == o.Id)
|
||||
|
||||
```
|
||||
|
||||
### Feature7 Insert or update
|
||||
### Feature7 : Insert or update
|
||||
insert or update
|
||||
```cs
|
||||
var x = Db.Storageable(list2).ToStorage();
|
||||
x.AsInsertable.ExecuteCommand();
|
||||
x.AsUpdateable.ExecuteCommand();
|
||||
```
|
||||
insert into not exists
|
||||
```cs
|
||||
var x = Db.Storageable(list).SplitInsert(it => !it.Any()).ToStorage()
|
||||
x.AsInsertable.ExecuteCommand();
|
||||
```
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user