Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/sqlkata/querybuilder
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmad-moussawi committed Aug 8, 2022
2 parents fe781b5 + e0430a3 commit b7bed96
Show file tree
Hide file tree
Showing 4 changed files with 62 additions and 2 deletions.
24 changes: 24 additions & 0 deletions .all-contributorsrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"files": [
"README.md"
],
"imageSize": 100,
"commit": false,
"contributors": [
{
"login": "mnsrulz",
"name": "mnsrulz",
"avatar_url": "https://avatars.githubusercontent.com/u/1809086?v=4",
"profile": "https://github.com/mnsrulz",
"contributions": [
"code"
]
}
],
"contributorsPerLine": 7,
"projectName": "querybuilder",
"projectOwner": "sqlkata",
"repoType": "github",
"repoHost": "https://github.com",
"skipCi": true
}
6 changes: 6 additions & 0 deletions QueryBuilder/QueryBuilder.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@
<EmbedUntrackedSources>true</EmbedUntrackedSources>

</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard2.0|AnyCPU'">
<DocumentationFile>bin\Debug\netstandard2.0\SqlKata.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'">
<DocumentationFile>bin\Release\netstandard2.0\SqlKata.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Collections.Concurrent" Version="4.3.0" />
</ItemGroup>
Expand Down
28 changes: 26 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,21 @@
<p align="center">
<strong>SqlKata Query Builder</strong>
</p>

<p align="center">
<img src="https://github.com/sqlkata/querybuilder/actions/workflows/build.yml/badge.svg">
<a href="https://www.nuget.org/packages/SqlKata"><img src="https://img.shields.io/nuget/vpre/SqlKata.svg"></a>
<a href="https://github.com/sqlkata/querybuilder/network/members"><img src="https://img.shields.io/github/forks/sqlkata/querybuilder"></a>
<a href="https://github.com/sqlkata/querybuilder/stargazers"><img src="https://img.shields.io/github/stars/sqlkata/querybuilder"></a>
<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>
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
<a href="#contributors-"><img src="https://img.shields.io/badge/all_contributors-1-orange.svg?style=flat-square" alt="All Contributors"></a>
<!-- ALL-CONTRIBUTORS-BADGE:END -->
<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>
</p>





> **WE ARE NOT ACCEPTING NEW COMPILERS, if you want to add your own compiler, we recommend to create a separate repo like SqlKata-Oracle**
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.
Expand Down Expand Up @@ -162,3 +166,23 @@ int affected = db.Query("Users").Where("Id", 1).Update(new {
```cs
int affected = db.Query("Users").Where("Id", 1).Delete();
```

## Contributors ✨

Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):

<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
<!-- prettier-ignore-start -->
<!-- markdownlint-disable -->
<table>
<tr>
<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>
</tr>
</table>

<!-- markdownlint-restore -->
<!-- prettier-ignore-end -->

<!-- ALL-CONTRIBUTORS-LIST:END -->

This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!
6 changes: 6 additions & 0 deletions SqlKata.Execution/SqlKata.Execution.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@
<EmbedUntrackedSources>true</EmbedUntrackedSources>


</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'">
<DocumentationFile>bin\Release\netstandard2.0\SqlKata.Execution.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard2.0|AnyCPU'">
<DocumentationFile>bin\Debug\netstandard2.0\SqlKata.Execution.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\QueryBuilder\QueryBuilder.csproj" />
Expand Down

0 comments on commit b7bed96

Please sign in to comment.