QueryFilter by Dan Lorenz

<PackageReference Include="QueryFilter" Version="1.0.4" />

 QueryFilter 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!

<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
  <metadata>
    <id>QueryFilter</id>
    <version>1.0.4</version>
    <title>QueryFilter</title>
    <authors>Dan Lorenz</authors>
    <projectUrl>https://queryfilter.codeplex.com/</projectUrl>
    <requireLicenseAcceptance>false</requireLicenseAcceptance>
    <description>QueryFilter provides way of providing complex filtering on IQueryable&lt;&gt; 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!</description>
    <summary>QueryFilter provides way of creating complex filtering on IQueryable&lt;&gt; with dynamic expression trees in a simple way!</summary>
    <releaseNotes>- Added implicit operator so you can use "=" to assign an EqualTo value
- Added Merge method to merge 2 similar commands</releaseNotes>
    <copyright>2015</copyright>
    <language>en-US</language>
    <tags>.NET IQueryable automatic filter expression trees</tags>
  </metadata>
</package>