You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-9Lines changed: 1 addition & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ The package is available and can be downloaded using [nuget.org](https://www.nug
25
25
26
26
## .NET Supported Versions
27
27
28
-
Built on [**.NET Standard 2.0**](https://learn.microsoft.com/en-us/dotnet/standard/net-standard?tabs=net-standard-2-0#tabpanel_1_net-standard-2-0)
28
+
Built on **.NET Standard 2.0** - ([_Supported Versions_](https://learn.microsoft.com/en-us/dotnet/standard/net-standard?tabs=net-standard-2-0#tabpanel_1_net-standard-2-0))
29
29
30
30
## Features
31
31
- Retrieve data from database.
@@ -50,11 +50,3 @@ Built on [**.NET Standard 2.0**](https://learn.microsoft.com/en-us/dotnet/standa
50
50
var result = dbContext.ExecuteCommand(<Sql Statement>);
51
51
var result = dbContext.ExecuteTransaction(<List of Sql Statements>);
52
52
```
53
-
```
54
-
var result = new DBContext(DB.<Database Type>, <Connection String>).FetchData(<Sql Statement>);
55
-
var result = new DBContext(DB.<Database Type>, <Connection String>).FetchData<T>(<Sql Statement>);
56
-
var result = new DBContext(DB.<Database Type>, <Connection String>).ExecuteScalar(<Sql Statement>);
57
-
var result = new DBContext(DB.<Database Type>, <Connection String>).ExecuteScalar<T>(<Sql Statement>);
58
-
var result = new DBContext(DB.<Database Type>, <Connection String>).ExecuteCommand(<Sql Statement>);
59
-
var result = new DBContext(DB.<Database Type>, <Connection String>).ExecuteTransaction(<Sql Statements>);
0 commit comments