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
ac1af0348c
commit
82f8fcc627
16
README.md
16
README.md
@ -318,3 +318,19 @@ catch (Exception)
|
||||
throw;
|
||||
}
|
||||
```
|
||||
## 7. Use SP
|
||||
```c
|
||||
//1. no result
|
||||
db.UseStoredProcedure(() =>
|
||||
{
|
||||
string spName = "sp_help";
|
||||
var getSpReslut = db.Ado.SqlQueryDynamic(spName, new { objname = "student" });
|
||||
});
|
||||
|
||||
//2. has result
|
||||
var result= db.UseStoredProcedure<dynamic>(() =>
|
||||
{
|
||||
string spName = "sp_help";
|
||||
return db.Ado.SqlQueryDynamic(spName, new { objname = "student" });
|
||||
});
|
||||
```
|
||||
|
Loading…
Reference in New Issue
Block a user