Update README.md

This commit is contained in:
果糖网 2021-10-10 23:29:57 +08:00 committed by GitHub
parent 6650946e64
commit a21b994af4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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();
```