ModularFramework.Utilities.Linq.Specifications
1.0.0
Prefix Reserved
dotnet add package ModularFramework.Utilities.Linq.Specifications --version 1.0.0
NuGet\Install-Package ModularFramework.Utilities.Linq.Specifications -Version 1.0.0
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="ModularFramework.Utilities.Linq.Specifications" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ModularFramework.Utilities.Linq.Specifications" Version="1.0.0" />
<PackageReference Include="ModularFramework.Utilities.Linq.Specifications" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add ModularFramework.Utilities.Linq.Specifications --version 1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: ModularFramework.Utilities.Linq.Specifications, 1.0.0"
#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.
#:package ModularFramework.Utilities.Linq.Specifications@1.0.0
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=ModularFramework.Utilities.Linq.Specifications&version=1.0.0
#tool nuget:?package=ModularFramework.Utilities.Linq.Specifications&version=1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
This package is designed to define, combine, and reuse LINQ predicates using the Specification Pattern.
It enables developers to encapsulate query logic into composable specifications that can be combined with logical operators (AND, OR, NOT).
Usage
1. Define Specifications
public class ActiveCustomerSpecification : Specification<Customer>
{
public override Expression<Func<Customer, bool>> Predicate { get; } = x => x.IsActive;
}
public class CustomerByCountrySpecification(string country) : Specification<Customer>
{
public override Expression<Func<Customer, bool>> Predicate { get; } = x => x.Country == country;
}
2. Combine Specifications
var activeSpec = new ActiveCustomerSpecification();
var usaSpec = new CustomerByCountrySpecification("USA");
// Combine specs
var activeAndUSASpec = activeSpec.And(usaSpec);
// Combine using operators
var activeAndNotUSASpec = activeSpec & !usaSpec;
3. Apply to LINQ Queries
activeUSACustomers = await customers.Where(activeAndUSASpec).ToListAsync();
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net10.0
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.0 | 110 | 2/19/2026 |