ASK.Filters
1.2.1-alpha1
See the version list below for details.
dotnet add package ASK.Filters --version 1.2.1-alpha1
NuGet\Install-Package ASK.Filters -Version 1.2.1-alpha1
<PackageReference Include="ASK.Filters" Version="1.2.1-alpha1" />
paket add ASK.Filters --version 1.2.1-alpha1
#r "nuget: ASK.Filters, 1.2.1-alpha1"
// Install ASK.Filters as a Cake Addin #addin nuget:?package=ASK.Filters&version=1.2.1-alpha1&prerelease // Install ASK.Filters as a Cake Tool #tool nuget:?package=ASK.Filters&version=1.2.1-alpha1&prerelease
ASK.Filters
ASK.Filters is a C# library that converts WHERE
clauses written in Polish notation into expressions that can be
used with EntityFramework or any IEnumerable. This library is particularly useful for REST APIs, allowing complex
filters to be specified directly in the URL.
Features
- Converts
WHERE
clauses in Polish notation to LINQ expressions. - Operations AND, OR, NOT, EQ, GT, GTE, LT, LTE, CONTAINS, START and END included
- No dependencies between API and Infrastructure layers.
- Easily configurable:
- Add custom operations.
- Add custom converters (useful with ValueType mapping in Entity Framework).
- Use custom evaluators to generate complex expressions if required.
Installation
Add the library to your project via NuGet:
Install-Package ASK.Filters
Usage
Query Examples
For a collection of resources /books
, you can specify a filter in the URL:
# Retrieve books with Author "John Doe" published in 1998
/books?q=AND EQUAL author 'John Doe' EQUAL publicationyear 1998
# Retrieve books with Author "John Doe" published in 1998 OR books having a publisher containing word "Page"
/books?q=OR AND EQUAL author 'John Doe' EQUAL publicationyear 1998 CONTAINS Publisher Page
This query will return books where the author's name contains "John" and the publication year is 1998.
Code Example
Here's how to use the library in your C# project:
using ASK.Filters;
using System.Linq.Expressions;
// Example of a WHERE clause in Polish notation
string query = "AND CONTAINS author John EQUAL publicationyear 1998";
// Create FilterOptions that contain all the available values and operations of the filter
var filterOptions = new FilterOptions([
new FilterProperty<string>("author"),
new FilterProperty<int>("publicationyear"),
new FilterProperty<AuthorId>("authorId") // Property with Custom Type
])
.AddConverter(x => new AuthorId(x)) // Custom Type Converter
.WithNullValue("[NULL]"); // Property value used to replace NULL
// Once you have filter options, create a parser
var filterParser = new PolishNotationFilterParser(filterOptions);
// Parse your filter
var filter = filterParser.Parse(query);
var filterEvaluator = new FilterEvaluator<Book>();
var expression = filterEvaluator.Evaluate(filter);
// Use with EntityFramework
using (var context = new BookContext())
{
var books = context.Books.Where(expression).ToList();
}
Customizing Query Generation
ASK.Filters allows for advanced customization of query generation. By default, the library maps a filter property directly to a property on the object being filtered. However, you can extend this behavior by adding custom operations, specific converters (particularly useful for ValueType mapping in Entity Framework), and custom evaluators to generate complex expressions as needed.
Example of Custom Operation
To create a custom operation, such as the LIKE
method in EntityFramework, start by creating the LikeOperation
class
inheriting from PropertyOperation
:
public record LikeOperation : PropertyOperation
{
public LikeOperation(string Name, object? Value) : base(Name, Value)
{
if(Value is not string)
throw new FormatException("Like value must be a string");
}
}
Next, add your custom operation to the FilterOptions
:
var options = new FilterOptions(...)
.AddOperation("LIKE", (name, value) => new LikeOperation(name, value));
You can now use the LIKE
keyword in your filters:
LIKE Name V?nc%
To Convert the Filter into an Expression you need to to create the corresponding OperationEvaluator
public class LikeOperationEvaluator : IBinaryOperationEvaluator
{
private static readonly MethodInfo LikeMethod = typeof(DbFunctionsExtensions)
.GetMethod(nameof(DbFunctionsExtensions.Like), [typeof(DbFunctions), typeof(string), typeof(string)])!;
private static readonly Expression EfFunctions = Expression.Constant(EF.Functions);
public Expression Evaluate(Expression left, Expression right) => Expression.Call(LikeMethod, EfFunctions, left, right);
}
And add the OperationEvaluator to the FilterEvaluator
var filterEvaluator = new FilterEvaluator<Book>();
filterEvaluator.AddOperationEvaluator<LikeOperator>(new LikeOperationEvaluator());
var expression = filterEvaluator.Evaluate(filter);
Customization of operation names in query
BY default AND, OR, NOT, EQ, GT, GTE, LT, LTE, CONTAINS, START and END operations are included in the FilterOptions bu you can customize this for you own abbreviation if you like.
var options = new FilterOptions(...)
.ClearOperations()
.AddOperation("ET", (left, right) => new AndOperation(left, right))
.AddOperation("OU", (left, right) => new OrOperation(left, right))
.AddOperation("EGAL", (name, value) => new EqualOperation(name, value));
Example:
ET EGAL FirstName John EGAL LastName Doe
Example of Custom Evaluator
Let’s say you want a filter on the FirstName of a User to match either the FirstName or the PhoneticFirstName properties. You can achieve this by creating a custom evaluator:
public class UserFilterEvaluator : FilterEvaluator<User>
{
protected override Expression GetPropertyExpression(ParameterExpression parameter, PropertyOperation property)
{
if (property.Name == "FirstName")
{
return Expression.Or(
property.GetExpression(
Expression.Property(parameter, "Firstname"),
Expression.Constant(property.Value)
), property.GetExpression(
Expression.Property(parameter, "PhoneticFirstName"),
Expression.Constant(property.Value)
));
}
return base.GetPropertyExpression(parameter, property);
}
}
To use this custom evaluator, you would create an instance and get the expression as follows:
var expression = new UserFilterEvaluator().GetExpression(filter);
License
This project is licensed under the LGPL License.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net8.0
- 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.