Skip to content

Commit d0800e9

Browse files
authored
Clarified packages use and dependency on Dapper
1 parent 7a94514 commit d0800e9

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ By providing a level of abstraction over the supported database engines, that al
2121

2222
SqlKata supports complex queries, such as nested conditions, selection from SubQuery, filtering over SubQueries, Conditional Statements and others. Currently it has built-in compilers for SqlServer, MySql, PostgreSql and Firebird.
2323

24+
The SqlKata.Execution package provides the ability to submit the queries to the database, using [Dapper](https://github.com/StackExchange/Dapper) under the covers.
25+
2426
Checkout the full documentation on [https://sqlkata.com](https://sqlkata.com)
2527

2628
## Installation
@@ -47,6 +49,8 @@ var compiler = new SqlCompiler();
4749
var db = new QueryFactory(connection, compiler)
4850
```
4951

52+
> `QueryFactory` is provided by the SqlKata.Execution package.
53+
5054
### Retrieve all records
5155
```cs
5256
var books = db.Query("Books").Get();

0 commit comments

Comments
 (0)