Skip to content

Commit d5f0797

Browse files
Merge branch 'master' of https://github.com/sqlkata/querybuilder
2 parents d7a4c58 + fdd6103 commit d5f0797

File tree

1 file changed

+23
-14
lines changed

1 file changed

+23
-14
lines changed

README.md

Lines changed: 23 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,17 @@
1010
</p>
1111

1212

13-
14-
15-
16-
> **WE ARE NOT ACCEPTING NEW COMPILERS, if you want to add your own compiler, we recommend to create a separate repo like SqlKata-Oracle**
17-
18-
Follow <a href="https://twitter.com/intent/tweet?text=Wow:&url=https%3A%2F%2Fgithub.com%2Fsqlkata%2Fquerybuilder"><img alt="Twitter" src="https://img.shields.io/twitter/url?label=%40ahmadmuzavi&style=social&url=https%3A%2F%2Ftwitter.com%2Fahmadmuzavi"></a> for the latest updates about SqlKata.
13+
<p align="center">
14+
<strong>Follow and Upvote SqlKata on Product Hunt to encourage the development of this project</strong>
15+
</p>
16+
<p align="center">
17+
<a href="https://www.producthunt.com/products/sqlkata?utm_source=badge-follow&utm_medium=badge&utm_souce=badge-sqlkata" target="_blank"><img src="https://api.producthunt.com/widgets/embed-image/v1/follow.svg?post_id=398417&theme=light" alt="SqlKata - Dynamic&#0032;Sql&#0032;query&#0032;builder&#0032;for&#0032;dotnet | Product Hunt" style="width: 250px; height: 54px;" width="250" height="54" /></a>
18+
</p>
1919

2020

2121
![Quick Demo](https://i.imgur.com/jOWD4vk.gif)
2222

2323

24-
2524
SqlKata Query Builder is a powerful Sql Query Builder written in C#.
2625

2726
It's secure and framework agnostic. Inspired by the top Query Builders available, like Laravel Query Builder, and Knex.
@@ -38,14 +37,9 @@ Checkout the full documentation on [https://sqlkata.com](https://sqlkata.com)
3837

3938
## Installation
4039

41-
using dotnet cli
4240
```sh
4341
$ dotnet add package SqlKata
44-
```
45-
46-
using Nuget Package Manager
47-
```sh
48-
PM> Install-Package SqlKata
42+
$ dotnet add package SqlKata.Execution # (optional) If you want the execution support
4943
```
5044

5145

@@ -162,4 +156,19 @@ int affected = db.Query("Users").Where("Id", 1).Update(new {
162156

163157
```cs
164158
int affected = db.Query("Users").Where("Id", 1).Delete();
165-
```
159+
```
160+
161+
## FAQ
162+
### How to know when a new release or a feature is available?
163+
I announce updates on My [Twitter Account](https://twitter.com/ahmadmuzavi), and you can subscribe to our news letters from the website https://sqlkata.com
164+
165+
### The database that I want is not supported why?
166+
Usually it's impossible to support all available database vendors, this why we focus on the major ones, and we are encourage you to create your own compiler for your database
167+
168+
### Do you accept new compilers?
169+
Unfortunetly no, the reason is this will add overhead for the project contributors, we prefer to improve the quality of the existing compilers instead
170+
171+
### How can I support the project?
172+
- Star the project here in Github, and share it with your friends
173+
- Follow and upvote it on Product Hunt <a href="https://www.producthunt.com/products/sqlkata?utm_source=badge-follow&utm_medium=badge&utm_souce=badge-sqlkata" target="_blank"><img src="https://api.producthunt.com/widgets/embed-image/v1/follow.svg?post_id=398417&theme=light&size=small" alt="SqlKata - Dynamic&#0032;Sql&#0032;query&#0032;builder&#0032;for&#0032;dotnet | Product Hunt" style="width: 86px; height: 32px;" width="250" height="54" /></a>
174+
- You can also donate to support the project financily on open collection.

0 commit comments

Comments
 (0)