Update README.md

This commit is contained in:
sunkaixuan 2019-04-29 18:12:42 +08:00 committed by GitHub
parent 29a90dff2e
commit 135d2b09ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -274,6 +274,18 @@ var ageP= new SugarParameter("@age", null, true);//isOutput=true
var dt2 = db.Ado.UseStoredProcedure().GetDataTable("sp_school",nameP,ageP);
```
## 7.Saveable
Insert or Update
```cs
db.Saveable<Student>(entity).ExecuteReturnEntity();
db.Saveable<Student>(new Student() { Name = "" })
.InsertColumns(it=>it.Name)
.UpdateColumns(it=>new { it.Name,it.CreateTime }
.ExecuteReturnEntity();
```
##### Priority level
AS>Add>Attribute
### 5.1 Add