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
5951901cb2
commit
27b5348cb1
11
README.md
11
README.md
@ -188,14 +188,9 @@ db.Queryable<OrderItem, Order>((i, o) => i.OrderId == o.Id)
|
||||
### Feature8 : 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();
|
||||
Db.Storageable(list2).ExecuteCommand();
|
||||
Db.Storageable(list2).PageSize(1000).ExecuteCommand();
|
||||
Db.Storageable(list2).PageSize(1000,exrows=> { }).ExecuteCommand();
|
||||
```
|
||||
|
||||
### Feature9 :Auto split table
|
||||
|
Loading…
Reference in New Issue
Block a user