FluentQueryBuilder 1.1.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package FluentQueryBuilder --version 1.1.1
NuGet\Install-Package FluentQueryBuilder -Version 1.1.1
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="FluentQueryBuilder" Version="1.1.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add FluentQueryBuilder --version 1.1.1
#r "nuget: FluentQueryBuilder, 1.1.1"
#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 FluentQueryBuilder as a Cake Addin
#addin nuget:?package=FluentQueryBuilder&version=1.1.1

// Install FluentQueryBuilder as a Cake Tool
#tool nuget:?package=FluentQueryBuilder&version=1.1.1

fluent-query-builder

An extensions for fluent mapping of object properties to dynamic entity and building string queries based on this properties parsing expression trees.

Provide IQueryExecutor interface implementation to object of IFluentQueryable<T> and work with any database source as with .net collections.

For conditional fields mapping implement IConditionResolver interface and set it up for ObjectMapperConfiguration. For custom data type conversion implement IConverterResolver interface and set it up for ObjectMapperConfiguration. Or just use custom converters implementing IPropertyConverter interface in FluentPropertyAttribute.

If any expression types should be transformed to string in a way different from standard behavior, implement IExpressionTypeTransformer interface and set it up for ExpressionParserConfiguration.

If and object types should be transformed to strings in queries, implement IStringificationRulesResolver interfaces and set it up for ExpressionParserConfiguration.

Default IQueryProvider<T> implementation not fully covers all needs of query building expressions. For add, update, delete operations default query provider should be extended. In this case query provider can be substituted via implementation of IQueryProviderFactory.

Default implementation of IFluentQueriable<T> can also be extended if needed.

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.1.7 468 7/27/2021
1.1.6 1,755 3/27/2019
1.1.5 663 3/26/2019
1.1.4 690 3/15/2019
1.1.3 631 3/15/2019
1.1.2 646 3/15/2019
1.1.1 700 3/5/2019
1.1.0 656 3/5/2019
1.0.14 643 3/1/2019
1.0.13 649 3/1/2019
1.0.12 727 2/20/2019
1.0.11 980 12/3/2018
1.0.10 809 11/28/2018
1.0.9 787 11/27/2018
1.0.8 819 10/30/2018
1.0.7 1,267 9/28/2018
1.0.6 819 9/20/2018
1.0.5 795 9/18/2018
1.0.4 816 8/30/2018
1.0.3 868 8/30/2018
1.0.2 835 8/29/2018
1.0.1 855 8/29/2018
1.0.0 1,071 8/29/2018

Moved query execution interface from IFluentQueriable to IFluentList