Skip to content

Commit b7bed96

Browse files
Merge branch 'master' of https://github.com/sqlkata/querybuilder
2 parents fe781b5 + e0430a3 commit b7bed96

4 files changed

Lines changed: 62 additions & 2 deletions

File tree

.all-contributorsrc

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"files": [
3+
"README.md"
4+
],
5+
"imageSize": 100,
6+
"commit": false,
7+
"contributors": [
8+
{
9+
"login": "mnsrulz",
10+
"name": "mnsrulz",
11+
"avatar_url": "https://avatars.githubusercontent.com/u/1809086?v=4",
12+
"profile": "https://github.com/mnsrulz",
13+
"contributions": [
14+
"code"
15+
]
16+
}
17+
],
18+
"contributorsPerLine": 7,
19+
"projectName": "querybuilder",
20+
"projectOwner": "sqlkata",
21+
"repoType": "github",
22+
"repoHost": "https://github.com",
23+
"skipCi": true
24+
}

QueryBuilder/QueryBuilder.csproj

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,12 @@
2424
<EmbedUntrackedSources>true</EmbedUntrackedSources>
2525

2626
</PropertyGroup>
27+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard2.0|AnyCPU'">
28+
<DocumentationFile>bin\Debug\netstandard2.0\SqlKata.xml</DocumentationFile>
29+
</PropertyGroup>
30+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'">
31+
<DocumentationFile>bin\Release\netstandard2.0\SqlKata.xml</DocumentationFile>
32+
</PropertyGroup>
2733
<ItemGroup>
2834
<PackageReference Include="System.Collections.Concurrent" Version="4.3.0" />
2935
</ItemGroup>

README.md

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,21 @@
11
<p align="center">
22
<strong>SqlKata Query Builder</strong>
33
</p>
4-
54
<p align="center">
65
<img src="https://github.com/sqlkata/querybuilder/actions/workflows/build.yml/badge.svg">
76
<a href="https://www.nuget.org/packages/SqlKata"><img src="https://img.shields.io/nuget/vpre/SqlKata.svg"></a>
87
<a href="https://github.com/sqlkata/querybuilder/network/members"><img src="https://img.shields.io/github/forks/sqlkata/querybuilder"></a>
98
<a href="https://github.com/sqlkata/querybuilder/stargazers"><img src="https://img.shields.io/github/stars/sqlkata/querybuilder"></a>
10-
<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=Tweet%20about%20SqlKata&style=social&url=https%3A%2F%2Fgithub.com%2Fsqlkata%2Fquerybuilder"></a>
9+
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
10+
<a href="#contributors-"><img src="https://img.shields.io/badge/all_contributors-1-orange.svg?style=flat-square" alt="All Contributors"></a>
11+
<!-- ALL-CONTRIBUTORS-BADGE:END -->
12+
<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=Tweet%20about%20SqlKata&style=social&url=https%3A%2F%2Fgithub.com%2Fsqlkata%2Fquerybuilder"></a>
1113
</p>
1214

1315

1416

17+
18+
1519
> **WE ARE NOT ACCEPTING NEW COMPILERS, if you want to add your own compiler, we recommend to create a separate repo like SqlKata-Oracle**
1620
1721
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.
@@ -162,3 +166,23 @@ int affected = db.Query("Users").Where("Id", 1).Update(new {
162166
```cs
163167
int affected = db.Query("Users").Where("Id", 1).Delete();
164168
```
169+
170+
## Contributors ✨
171+
172+
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
173+
174+
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
175+
<!-- prettier-ignore-start -->
176+
<!-- markdownlint-disable -->
177+
<table>
178+
<tr>
179+
<td align="center"><a href="https://github.com/mnsrulz"><img src="https://avatars.githubusercontent.com/u/1809086?v=4?s=100" width="100px;" alt=""/><br /><sub><b>mnsrulz</b></sub></a><br /><a href="https://github.com/sqlkata/querybuilder/commits?author=mnsrulz" title="Code">💻</a></td>
180+
</tr>
181+
</table>
182+
183+
<!-- markdownlint-restore -->
184+
<!-- prettier-ignore-end -->
185+
186+
<!-- ALL-CONTRIBUTORS-LIST:END -->
187+
188+
This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!

SqlKata.Execution/SqlKata.Execution.csproj

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@
2222
<EmbedUntrackedSources>true</EmbedUntrackedSources>
2323

2424

25+
</PropertyGroup>
26+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'">
27+
<DocumentationFile>bin\Release\netstandard2.0\SqlKata.Execution.xml</DocumentationFile>
28+
</PropertyGroup>
29+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard2.0|AnyCPU'">
30+
<DocumentationFile>bin\Debug\netstandard2.0\SqlKata.Execution.xml</DocumentationFile>
2531
</PropertyGroup>
2632
<ItemGroup>
2733
<ProjectReference Include="..\QueryBuilder\QueryBuilder.csproj" />

0 commit comments

Comments
 (0)