Innovabit.DotNet.Interceptors.Validation.FluentValidation
1.0.0.96
dotnet add package Innovabit.DotNet.Interceptors.Validation.FluentValidation --version 1.0.0.96
NuGet\Install-Package Innovabit.DotNet.Interceptors.Validation.FluentValidation -Version 1.0.0.96
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="Innovabit.DotNet.Interceptors.Validation.FluentValidation" Version="1.0.0.96" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Innovabit.DotNet.Interceptors.Validation.FluentValidation" Version="1.0.0.96" />
<PackageReference Include="Innovabit.DotNet.Interceptors.Validation.FluentValidation" />
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 Innovabit.DotNet.Interceptors.Validation.FluentValidation --version 1.0.0.96
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Innovabit.DotNet.Interceptors.Validation.FluentValidation, 1.0.0.96"
#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 Innovabit.DotNet.Interceptors.Validation.FluentValidation@1.0.0.96
#: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=Innovabit.DotNet.Interceptors.Validation.FluentValidation&version=1.0.0.96
#tool nuget:?package=Innovabit.DotNet.Interceptors.Validation.FluentValidation&version=1.0.0.96
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Innovabit.DotNet.Interceptors.Validation.FluentValidation
FluentValidation provider for
Innovabit.DotNet.Interceptors.Validation.
Validates method arguments using your registered IValidator<T> validators.
Install
dotnet add package Innovabit.DotNet.Interceptors.Validation.FluentValidation
Usage
public sealed class CreateUserRequestValidator : AbstractValidator<CreateUserRequest>
{
public CreateUserRequestValidator()
{
RuleFor(x => x.Email).NotEmpty().EmailAddress();
RuleFor(x => x.Age).InclusiveBetween(18, 120);
}
}
services.AddScoped<IValidator<CreateUserRequest>, CreateUserRequestValidator>();
services.AddInterceptors()
.AddFluentValidation();
services.AddScopedWithInterception<IUserService, UserService>();
For each [ValidateParameter] argument, the matching IValidator<T> is resolved from the
container and run; failures are aggregated into a ParameterValidationException. Arguments
without a registered validator are skipped.
Part of
The Innovabit.DotNet.Interceptors suite —
github.com/Innovabit/dotnet-interceptors.
| 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. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. 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
- FluentValidation (>= 12.1.1)
- Innovabit.DotNet.Interceptors.Validation.Abstractions (>= 1.0.0.96)
-
net8.0
- FluentValidation (>= 12.1.1)
- Innovabit.DotNet.Interceptors.Validation.Abstractions (>= 1.0.0.96)
-
net9.0
- FluentValidation (>= 12.1.1)
- Innovabit.DotNet.Interceptors.Validation.Abstractions (>= 1.0.0.96)
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.96 | 90 | 9/12/2026 |
| 1.0.0.95 | 105 | 9/5/2026 |
| 1.0.0.94 | 97 | 9/5/2026 |
| 1.0.0.93 | 93 | 9/5/2026 |
| 1.0.0.90 | 109 | 8/17/2026 |
| 1.0.0.89 | 108 | 8/15/2026 |
| 1.0.0.88 | 104 | 8/15/2026 |
| 1.0.0.87 | 103 | 8/13/2026 |
| 1.0.0.86 | 108 | 8/13/2026 |
| 1.0.0.85 | 95 | 8/13/2026 |
| 1.0.0.84 | 96 | 8/13/2026 |
| 1.0.0.83 | 96 | 8/13/2026 |
| 1.0.0.82 | 96 | 8/13/2026 |
| 1.0.0.81 | 107 | 8/13/2026 |
| 1.0.0.80 | 97 | 8/12/2026 |
| 1.0.0.79 | 97 | 8/12/2026 |
| 1.0.0.78 | 105 | 8/12/2026 |
| 1.0.0.77 | 94 | 8/12/2026 |
| 1.0.0.76 | 98 | 8/12/2026 |
| 1.0.0.75 | 105 | 8/12/2026 |
Loading failed