ONIXLabs DotNET Library 11.3.0
We are excited to announce the release of ONIXLabs .NET Library version 11.3.0, now available on NuGet.
Core Updates
The core package now includes an implementation of the Specification pattern:
Specification<T>
represents the base class for implementing specifications.CriteriaSpecification<T>
represents a specification that wrapsExpression<Func<T, bool>>
.
The implementation also includes logical specifications for AND, OR and NOT operations.