Update README.md

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

View File

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