QueryFilter 1.0.4
dotnet add package QueryFilter --version 1.0.4
NuGet\Install-Package QueryFilter -Version 1.0.4
<PackageReference Include="QueryFilter" Version="1.0.4" />
paket add QueryFilter --version 1.0.4
#r "nuget: QueryFilter, 1.0.4"
// Install QueryFilter as a Cake Addin #addin nuget:?package=QueryFilter&version=1.0.4 // Install QueryFilter as a Cake Tool #tool nuget:?package=QueryFilter&version=1.0.4
QueryFilter provides way of providing complex filtering on IQueryable<> with dynamic expression trees. With one property, you can do multiple filters, ands, ors, contains, less than, not equals, etc for anything that implements IQueryable. This also applies to Entity Framework. You also get the ability to add grouping to your queries with a very simple syntax. Best of all, you only have to work with the filter properties. You simply send your filter object and the query you want to apply the .Where clause to and QueryFilter takes care of the rest! You can even deserialize JSON into your filter if you want the UI to be able to apply these complex filters!
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net40 is compatible. net403 was computed. net45 is compatible. net451 is compatible. 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. |
This package has no dependencies.
GitHub repositories
This package is not used by any popular GitHub repositories.
- Added implicit operator so you can use "=" to assign an EqualTo value
- Added Merge method to merge 2 similar commands