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
+15-14Lines changed: 15 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,20 +1,19 @@
1
-
# BctSp
2
-
3
-
This project has been developed with the .NET Standart 2.1 and allows you to call stored procedure from the database
4
-
by simply creating only interface and methods signature without needing any concrete class to call any stored procedure.
5
-
**It can work async and sync. It provides stored procedure support for MsSQL and MySQL, function support for PostgreSQL.**
1
+
# BctSP
6
2
3
+
This project has been developed with the .NET Standard 2.1.
4
+
It allows you to call stored procedures from the database by simply creating only the interface and methods signature without needing any concrete class to call any stored procedure.
5
+
**It can work async and sync. It provides stored procedure support for MsSQL and MySQL and function support for PostgreSQL.**
7
6
8
7
# Installation
9
8
10
-
BctSP is available in Nuget. Anybody can install it via Nuget Package Manager.
11
-
12
-
https://www.nuget.org/packages/BctSP
9
+
BctSP is now available on NuGet.
10
+
If interested, you can easily install it using the NuGet Package Manager. It can be accessed through the link https://www.nuget.org/packages/BctSP.
13
11
14
12
# Usage
15
13
14
+
_To utilize the BctSP NuGet package, you can follow these phases:_
16
15
17
-
- Add BctSp service to your application builder in Program.cs and set BctSpConnectionStringOrConfigurationPath and DatabaseType for database connection which can be MsSQL or MySQL or PostgreSQL.
16
+
- Add BctSP service to your application builder in Program.cs and set BctSpConnectionStringOrConfigurationPath and DatabaseType for database connection, which can be MsSQL, MySQL, or PostgreSQL.
- Create a request that inherits from the BctSpBaseRequest. Generic argument of the BctSpBaseRequest should be the response type of the request that inherits BctSpBaseResponse.
27
+
- Create a request that inherits from the BctSpBaseRequest. The generic argument of the BctSpBaseRequest should be the response type of the request that inherits BctSpBaseResponse.
0 commit comments