diff --git a/README.md b/README.md index e8580647f..b77a9fe10 100644 --- a/README.md +++ b/README.md @@ -152,3 +152,11 @@ db.Queryable((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(); +``` +