Skip to content

Commit 6d80639

Browse files
committed
Readme Update
1 parent d26ac65 commit 6d80639

File tree

1 file changed

+32
-1
lines changed

1 file changed

+32
-1
lines changed

README.md

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,35 @@ QueryDB is a flexible database query framework designed to simplify querying and
1717
- [MSSQL](https://www.microsoft.com/en-us/sql-server)
1818
- [MySQL](https://www.mysql.com/)
1919
- [Oracle](https://www.oracle.com/)
20-
- [PostgreSQL](https://www.postgresql.org/)
20+
- [PostgreSQL](https://www.postgresql.org/)
21+
22+
## Download
23+
The package is available and can be downloaded using [nuget.org](https://www.nuget.org/) package manager.
24+
- Package Name - [QueryDB](https://www.nuget.org/packages/QueryDB).
25+
26+
## .NET Supported Versions
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)
29+
30+
## Features
31+
- Retrieve data from database.
32+
- Execute scalar database commands.
33+
- Execute database commands.
34+
- Execute transactions while maintaining atomicity.
35+
36+
## Getting Started
37+
- Setup DBContext with the database of your choice
38+
39+
```
40+
var dbContext = new DBContext(DB.<Database Type>, <Connection String>);
41+
```
42+
43+
- Execute DBContext commands
44+
45+
```
46+
var dbContext = new DBContext(DB.<Database Type>, <Connection String>);
47+
var result = dbContext.ExecuteTransaction(<Sql Statements>);
48+
```
49+
```
50+
new DBContext(DB.<Database Type>, <Connection String>).ExecuteTransaction(<Sql Statements>);
51+
```

0 commit comments

Comments
 (0)