mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-06-28 13:34:32 +08:00
Update README.md
This commit is contained in:
parent
740e155497
commit
97e43f692a
@ -360,6 +360,15 @@ var list = db.Utilities.DataTableToList(datatable);
|
||||
```
|
||||
|
||||
## 16.SqlSugarClient.SimpleClient
|
||||
```cs
|
||||
var db = GetInstance();
|
||||
var sdb = db.GetSimpleClient<Student>();
|
||||
sdb.GetById(1);
|
||||
sdb.GetList();
|
||||
sdb.DeleteById(1);
|
||||
sdb.Update(obj);
|
||||
//sdb.xxx ..
|
||||
```
|
||||
|
||||
|
||||
# Code generator
|
||||
|
Loading…
Reference in New Issue
Block a user