Skip to content

Commit 6556273

Browse files
update package info
1 parent bfde41f commit 6556273

5 files changed

Lines changed: 20 additions & 3 deletions

File tree

QueryBuilder/Expressions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
namespace SqlKata
22
{
3-
public class Expressions
3+
public static class Expressions
44
{
55
/// <summary>
6-
/// Instruct the compiler to fetch the value from the predefined variables
6+
/// Instruct the compiler to resolve the value from the predefined variables
77
/// In the current query or parents queries.
88
/// </summary>
99
/// <param name="name"></param>

QueryBuilder/QueryBuilder.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<PackageId>SqlKata</PackageId>
55
<PackageTags>sql;query-builder;dynamic-query</PackageTags>
66
<Title>SqlKata The C# Sql Query Builder</Title>
7-
<Description>A powerful Dynamic Sql Query Builder supporting Sql Server, MySql, PostgreSql and Firebird</Description>
7+
<Description>A powerful Dynamic Sql Query Builder supporting Sql Server, MySql, PostgreSql, Oracle and Firebird</Description>
88
<Authors>Ahmad Moussawi</Authors>
99
<Copyright>Copyright (c) 2017 Ahmad Moussawi</Copyright>
1010
<TargetFrameworks>netstandard1.0;net45</TargetFrameworks>

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,13 @@ var introToSql = db.Query("Books").Where("Id", 145).Where("Lang", "en").First();
6666
var recent = db.Query("Books").OrderByDesc("PublishedAt").Limit(10).Get();
6767
```
6868

69+
### Include Author information
70+
```cs
71+
var books = db.Query("Books")
72+
.Incluce(db.Query("Authors")) // Assumes that the Books table have a `AuthorId` column
73+
.Get();
74+
```
75+
6976
### Join with authors table
7077

7178
```cs

SqlKata.Execution/SqlKata.Execution.csproj

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2+
<PropertyGroup>
3+
<PackageId>SqlKata.Execution</PackageId>
4+
<PackageTags>sql;query-builder;dynamic-query</PackageTags>
5+
<Title>SqlKata The C# Sql Query Builder</Title>
6+
<Description>Adds the execution capabilities for SqlKata</Description>
7+
<Authors>Ahmad Moussawi</Authors>
8+
<Copyright>Copyright (c) 2017 Ahmad Moussawi</Copyright>
9+
<TargetFrameworks>netstandard1.0;net45</TargetFrameworks>
10+
<RootNamespace>SqlKata</RootNamespace>
11+
</PropertyGroup>
212
<ItemGroup>
313
<ProjectReference Include="..\QueryBuilder\QueryBuilder.csproj" />
414
</ItemGroup>

0 commit comments

Comments
 (0)