cqrs-validation-mediatr-fluentvalidation
cqrs-validation-mediatr-fluentvalidation copied to clipboard
This repo contains the source code for the "CQRS Validation Pipeline with MediatR and FluentValidation" article on Code Maze
Results
1
cqrs-validation-mediatr-fluentvalidation issues
Sort by
recently updated
recently updated
newest added
Hello, thank for you example. I am want to use Validator like public class CustomerValidator : AbstractValidator { SomeExternalWebApiClient _client; public CustomerValidator(SomeExternalWebApiClient client) { _client = client; RuleFor(x => x.Id).MustAsync(async...