-
After trying to integrate I found out this still references version 3.4.6.0 from FluentValidation. The latest version is 6.2.1. It would be great if this could be updated to use the latest version.
-
### FluentValidation version
11.2.2
### ASP.NET version
dotnet 6
### Summary
I have a generic validator, used for MediatR requests:
```
public class SearchQueryValidator
: AbstractValid…
-
-
So first of all, I would like to thank you guys for this beautiful framework. It made developing in .NET way more fun and productive!
I've just discovered one of the strangest behaviors in the Swag…
-
## Feature description
* Validating parent type as one of child type.
* Same feature in [FluentValidation](https://docs.fluentvalidation.net/en/latest/inheritance.html).
## Feature in action
…
-
I have field _A_ that is **required when** _B_ has a value of 'X'. How can I implement this EF Core using ASP.Net Core?
I did find [this article](https://gist.github.com/rowanmiller/52cd1ffb8ba118…
-
Hello,
It looks like `ValidationSchemaProcessor` does not respect validators from `Include()` and `RuleForEach()` rules.
this issue is forwarded from the [small discord conversation](https://di…
-
I see the error messages come from [a `.resx` file](https://github.com/skwasjer/IbanNet/blob/main/src/IbanNet/Resources.resx). When using the library in my own project, is there a (recommended) way to…
-
I have a Generic SearchQuery used with MediatR
```
public record SearchQuery
(TSearchDto Search) : IRequest
where TEntity : class, new()
where TEntityDto : class, new()
where T…
-
### Is your feature request related to a problem? Please describe.
I have a class which holds a List of an abstract class.
For example:
```csharp
public class Form
{
public List Elements …