We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92486bd commit bf18996Copy full SHA for bf18996
README.md
@@ -79,5 +79,17 @@ Built on **.NET Standard 2.0** - ( [_Supported Versions_](https://learn.microsof
79
```
80
var result = dbContext.FetchDataAsync<T>(<Sql Statement>);
81
82
+ ```
83
+ var result = dbContext.ExecuteScalarAsync(<Sql Statement>);
84
85
86
+ var result = dbContext.ExecuteScalarAsync<T>(<Sql Statement>);
87
88
89
+ var result = dbContext.ExecuteCommandAsync(<Sql Statement>);
90
91
92
+ var result = dbContext.ExecuteTransactionAsync(<List of Sql Statements>);
93
94
95
</details>
0 commit comments