Skip to content

Commit 674dc4c

Browse files
authored
Update README.md
1 parent 9432483 commit 674dc4c

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

README.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# BctSP
22

33
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.**
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**
66

77
# Installation
88

@@ -13,7 +13,7 @@ If interested, you can easily install it using the NuGet Package Manager. It can
1313

1414
_To utilize the BctSP NuGet package, you can follow these phases:_
1515

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.
1717

1818
```cs
1919
builder.Services.AddBctSp((x) =>
@@ -25,15 +25,13 @@ builder.Services.AddBctSp((x) =>
2525
```
2626

2727
- 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.
2929

3030
```cs
3131
[BctSpAttribute("GetProductsByPrice", BctSP.Enums.BctSpCommandType.StoredProcedure)]
3232
public class GetProductsByPriceRequest : BctSpBaseRequest<GetProductsByPriceResponse>
3333
{
34-
3534
public decimal ProductPrice { get; set; }
36-
3735
}
3836
```
3937

@@ -116,7 +114,12 @@ _Sample Usage_
116114
```
117115

118116
------------
119-
**Contact Me:** &nbsp; - ***[LinkedIn](https://tr.linkedin.com/in/bariscantanriverdi)*** &nbsp; - &nbsp; ***[Mail](mailto:mail@[email protected]?subject=BctSP)***
117+
118+
***Contributors***
119+
120+
<a href="https://github.com/adessoTurkey-dotNET/Bctsp/graphs/contributors">
121+
<img src="https://contrib.rocks/image?repo=adessoTurkey-dotNET/Bctsp" />
122+
</a>
120123

121124
------------
122125

0 commit comments

Comments
 (0)