ExpressionAggregator 1.0.3

dotnet add package ExpressionAggregator --version 1.0.3
NuGet\Install-Package ExpressionAggregator -Version 1.0.3
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="ExpressionAggregator" Version="1.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ExpressionAggregator --version 1.0.3
#r "nuget: ExpressionAggregator, 1.0.3"
#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 ExpressionAggregator as a Cake Addin
#addin nuget:?package=ExpressionAggregator&version=1.0.3

// Install ExpressionAggregator as a Cake Tool
#tool nuget:?package=ExpressionAggregator&version=1.0.3

Expression Aggregator (GitHub)

Linq Expression aggregation, given list of Expressions it creates aggregated expression or Func. This is useful if you conditionally added expressions to a list of expressions and want to aggregated them all together into one expression or Func.

Interface:
public interface IExpressionAggregator<T>
{
    Func<T, bool> AggregateAndCompile(IEnumerable<Expression<Func<T, bool>>> list);
    
    Expression<Func<T, bool>> Aggregate(IEnumerable<Expression<Func<T, bool>>> list);
}

Sample code:

// accumulator by defualt is "And"
var list = new List<Expression<Func<Person, bool>>>();

// add expressions
list.Add(x => x.Age > 10);
list.Add(x => x.DateOfBirth > DateTime.MinValue);

// create sample size
var people = _fixture.CreateMany<Person>();

// aggregate expressions into one large expression and compile expression to Func
var func =_aggregator.AggregateAndCompile(list);

// use the Func is Linq Where clause
var filteredPeople = people.Where(func).ToList());

Extras:

This utility comes with ExpressionList class that is optional to use but it implements IList and overrides Add method and prevents adding expressions to the list if expression has constant value of null.

var list = new ExpressionList<Person>();

// this will be added successfully to the list
list.AddIfNotNull(x => x.FirstName == "Test firstname");

// this will not be added to the list
list.AddIfNotNull(x => x.NullableDateOfBirth == null);
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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. 
.NET Core netcoreapp2.0 is compatible.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETCoreApp 2.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.

Version Downloads Last updated
1.0.3 1,101 2/15/2018
1.0.2 957 2/13/2018
1.0.1 943 2/13/2018
1.0.0 1,006 2/13/2018