Skip to content

Commit

Permalink
update package info
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmad-moussawi committed Aug 7, 2019
1 parent bfde41f commit 6556273
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 3 deletions.
4 changes: 2 additions & 2 deletions QueryBuilder/Expressions.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
namespace SqlKata
{
public class Expressions
public static class Expressions
{
/// <summary>
/// Instruct the compiler to fetch the value from the predefined variables
/// Instruct the compiler to resolve the value from the predefined variables
/// In the current query or parents queries.
/// </summary>
/// <param name="name"></param>
Expand Down
2 changes: 1 addition & 1 deletion QueryBuilder/QueryBuilder.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<PackageId>SqlKata</PackageId>
<PackageTags>sql;query-builder;dynamic-query</PackageTags>
<Title>SqlKata The C# Sql Query Builder</Title>
<Description>A powerful Dynamic Sql Query Builder supporting Sql Server, MySql, PostgreSql and Firebird</Description>
<Description>A powerful Dynamic Sql Query Builder supporting Sql Server, MySql, PostgreSql, Oracle and Firebird</Description>
<Authors>Ahmad Moussawi</Authors>
<Copyright>Copyright (c) 2017 Ahmad Moussawi</Copyright>
<TargetFrameworks>netstandard1.0;net45</TargetFrameworks>
Expand Down
File renamed without changes.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,13 @@ var introToSql = db.Query("Books").Where("Id", 145).Where("Lang", "en").First();
var recent = db.Query("Books").OrderByDesc("PublishedAt").Limit(10).Get();
```

### Include Author information
```cs
var books = db.Query("Books")
.Incluce(db.Query("Authors")) // Assumes that the Books table have a `AuthorId` column
.Get();
```

### Join with authors table

```cs
Expand Down
10 changes: 10 additions & 0 deletions SqlKata.Execution/SqlKata.Execution.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>SqlKata.Execution</PackageId>
<PackageTags>sql;query-builder;dynamic-query</PackageTags>
<Title>SqlKata The C# Sql Query Builder</Title>
<Description>Adds the execution capabilities for SqlKata</Description>
<Authors>Ahmad Moussawi</Authors>
<Copyright>Copyright (c) 2017 Ahmad Moussawi</Copyright>
<TargetFrameworks>netstandard1.0;net45</TargetFrameworks>
<RootNamespace>SqlKata</RootNamespace>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\QueryBuilder\QueryBuilder.csproj" />
</ItemGroup>
Expand Down

0 comments on commit 6556273

Please sign in to comment.