WildFire 1.0.11

dotnet add package WildFire --version 1.0.11
NuGet\Install-Package WildFire -Version 1.0.11
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="WildFire" Version="1.0.11" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add WildFire --version 1.0.11
#r "nuget: WildFire, 1.0.11"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install WildFire as a Cake Addin
#addin nuget:?package=WildFire&version=1.0.11

// Install WildFire as a Cake Tool
#tool nuget:?package=WildFire&version=1.0.11

var queryBuilder = new QueryBuilder();
   var t0 = new Table()
           {
               TableName = "Table0",
               TableAlias = "t0"
           };       
var t1 = new Table()
           {
               TableName = "Table1",
               Column1Name = "Column1",
               Column2Name = "Column2",
               JoinType = JoinType.Inner,
               TableAlias = "t2"
           };
////Create table from first table
           //var tables = new List<Table>();
           //tables.Add(t1);
           //// Perform a join
           //t0.JoinOn(tables);
           queryBuilder.AddTable(t0);
           ////there are two ways you can add predicate  either by string or predicate object
           var textMatchExpression = new Predicate("t1.[Column3] like 'Joe'");
           ////AddPredicate also takes just string if you have only one where condition.
           queryBuilder.AddPredicate(textMatchExpression, OperationType.And);
           var datesExpressions1 = new List<string>();
           datesExpressions1.Add("f.[Column5] >= '2015-09-01'");
           datesExpressions1.Add("f.[Column6] <= '2015-12-31'");
           var dateExpressions2 = new List<string>();
           dateExpressions2.Add("f.[Column7] >= '2015-10-01'");
           dateExpressions2.Add("f.[Column8] >= '2015-12-31'");
           //add groups of predicates
           queryBuilder.AddPredicate(datesExpressions1, OperationType.And, OperationType.Or);
           queryBuilder.AddPredicate(dateExpressions2, OperationType.And, OperationType.Empty);
           //Order by
           queryBuilder.Query.OrderBy("Column1", true);
           //Fetch overloaded with offset and number of rows.
           queryBuilder.Query.FetchNext("2","20");
           queryBuilder.GenerateQuery();

Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.11 1,828 9/22/2015
1.0.10 1,638 9/22/2015
1.0.9 1,597 9/22/2015
1.0.8 1,613 9/22/2015
1.0.7 1,616 9/22/2015
1.0.6 1,609 9/21/2015
1.0.5 1,615 9/21/2015
1.0.4 1,633 9/21/2015
1.0.3 1,609 9/18/2015
1.0.2 1,615 9/18/2015
1.0.1 1,599 9/17/2015
1.0.0 1,595 9/17/2015

1.0.2 Updated logic for groups and subgroups in predicates.
1.0.3 Added support for order by and Fetch Next also now queryBuilder.Query object gives query string.(Breaking change)
1.0.4 Multiple tables will not have repeated table names.
1.0.5 Breaking change :- Fixed a major bug now you dont have to addfrom table anymore you could just add tables in the list and join on any one table also table is a object.
1.0.6 Updated description.
1.0.7 Updated dlls.
1.0.8 Fixed bug of not selecting the columns and not getting comma.
Now Order by is enum ASC DESC
Fixed bug ZERO predicates was throwing null reference exception.
1.0.9 Bug fixed code is unreachable.
1.0.10 Fixed the spacing predicates and and removing the last predicate if you are passing list of predicates or may predicates.
1.0.11