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
+10-7Lines changed: 10 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,8 @@
1
1
# BctSP
2
2
3
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 MySQLand function support for PostgreSQL.**
4
+
It allows you to call stored procedures and functions 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 and function support for MsSQL, MySQL, PostgreSQL and OracleSQL**
6
6
7
7
# Installation
8
8
@@ -13,7 +13,7 @@ If interested, you can easily install it using the NuGet Package Manager. It can
13
13
14
14
_To utilize the BctSP NuGet package, you can follow these phases:_
15
15
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.
16
+
- Add BctSP service to your application builder in Program.cs and set BctSpConnectionStringOrConfigurationPath and DatabaseType for database connection, which can be MsSQL, MySQL, PostgreSQL, OracleSQL.
- 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.
28
-
- The request should have 2 class attributes, sp/function name and command type.
28
+
- The request should have a class attributes whichs arguments should be sp/function name and command type.
0 commit comments