Ardalis.Specification
6.0.0
See the version list below for details.
dotnet add package Ardalis.Specification --version 6.0.0
NuGet\Install-Package Ardalis.Specification -Version 6.0.0
<PackageReference Include="Ardalis.Specification" Version="6.0.0" />
paket add Ardalis.Specification --version 6.0.0
#r "nuget: Ardalis.Specification, 6.0.0"
// Install Ardalis.Specification as a Cake Addin #addin nuget:?package=Ardalis.Specification&version=6.0.0 // Install Ardalis.Specification as a Cake Tool #tool nuget:?package=Ardalis.Specification&version=6.0.0
A simple package with a base Specification class, for use in creating queries that work with Repository types.
Product | Versions 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 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- No dependencies.
NuGet packages (82)
Showing the top 5 NuGet packages that depend on Ardalis.Specification:
Package | Downloads |
---|---|
Ardalis.Specification.EntityFrameworkCore
EF Core plugin package to Ardalis.Specification containing EF Core evaluator and abstract repository. |
|
Ardalis.SharedKernel
An example shared kernel project/package for use with Ardalis.CleanArchitecture template. You should probably replace this with your own package! |
|
Ardalis.Specification.EntityFramework6
EF6 plugin package to Ardalis.Specification containing EF6 evaluator and abstract repository. |
|
PluralsightDdd.SharedKernel
An SharedKernal packaged used as a sample in the DDD Fundamentals Pluralsight course by Julie Lerman and Steve Smith. |
|
Vivarni.DDD.Core
Fundamental building blocks for creating the domain layer in a DDD software design approach. |
GitHub repositories (10)
Showing the top 5 popular GitHub repositories that depend on Ardalis.Specification:
Repository | Stars |
---|---|
ardalis/CleanArchitecture
Clean Architecture Solution Template: A starting point for Clean Architecture with ASP.NET Core
|
|
dotnet-architecture/eShopOnWeb
Sample ASP.NET Core 8.0 reference application, powered by Microsoft, demonstrating a layered application architecture with monolithic deployment model. Download the eBook PDF from docs folder.
|
|
fullstackhero/dotnet-starter-kit
Production Grade Cloud-Ready .NET 8 Starter Kit (Web API + Blazor Client) with Multitenancy Support, and Clean/Modular Architecture that saves roughly 200+ Development Hours! All Batteries Included.
|
|
neozhu/CleanArchitectureWithBlazorServer
This is a repository for creating a Blazor Server dashboard application following the principles of Clean Architecture
|
|
EdiWang/Moonglade
The ASP.NET Core blog system of https://edi.wang, runs on Microsoft Azure
|
Version | Downloads | Last updated |
---|---|---|
8.0.0 | 2,083,568 | 11/22/2023 |
7.0.0 | 1,087,055 | 5/26/2023 |
6.1.0 | 2,116,193 | 6/24/2022 |
6.0.1 | 779,900 | 1/19/2022 |
6.0.0 | 45,389 | 1/18/2022 |
5.2.0 | 481,058 | 9/7/2021 |
5.1.0 | 230,951 | 4/17/2021 |
5.0.3 | 52,341 | 3/5/2021 |
5.0.2-beta | 1,606 | 3/4/2021 |
5.0.1-beta | 2,465 | 3/1/2021 |
5.0.0-beta | 2,466 | 3/1/2021 |
4.2.0 | 215,964 | 1/29/2021 |
4.1.0 | 403,826 | 9/4/2020 |
4.0.0 | 81,005 | 7/31/2020 |
3.0.0 | 31,609 | 6/5/2020 |
2.1.0 | 1,980 | 6/4/2020 |
2.0.0 | 4,078 | 1/3/2020 |
1.2.0 | 2,081 | 7/17/2019 |
1.1.1 | 2,014 | 2/15/2019 |
1.1.0 | 1,969 | 2/15/2019 |
1.0.1 | 2,545 | 2/13/2018 |
1.0.0 | 21,983 | 2/13/2018 |
See README.md
Breaking changes
Improve in-memory evaluation performance. #182. Breaking Changes: The specification state for Where, Order, and Search expressions is stored in separate types.
Remove Paginate builder action. Breaking Change (It was marked as obsolete since version 4). Issue #189
Other updates
Add support for AnyAsync in the base repository. #180
Add SQL Like implementation for the in-memory evaluator. #150
Add support for IgnoreQueryFilters. #159
Return Task<int> from SaveChangesAsync. #174
Add support for condition in the specification builder methods. #143
Improve Include evaluation performance by implementing caching (opt-in feature). Issue #187
Implement infrastructure for specification validators. Issue #111
Adding XML Comments #224