Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for Fluent Validation #38

Closed
MrDave1999 opened this issue Nov 18, 2023 · 0 comments · Fixed by #42
Closed

Add support for Fluent Validation #38

MrDave1999 opened this issue Nov 18, 2023 · 0 comments · Fixed by #42
Labels
feature New feature or request

Comments

@MrDave1999
Copy link
Owner

MrDave1999 commented Nov 18, 2023

These methods can be distributed in a NuGet package:

public static class SRFluentValidationResultExtensions
{
    public static bool IsFailed(this ValidationResult result) => !result.IsValid;
    public static IEnumerable<string> AsErrors(this ValidationResult result)
        => result.Errors.Select(failure => failure.ErrorMessage);

   public static Result Invalid(this ValidationResult result) 
        => Result.Invalid(result.AsErrors());

   public static Result Invalid(this ValidationResult result, string message) 
        => Result.Invalid(message, result.AsErrors());
}

The SR "prefix" is so as not to cause name conflicts.

PD: The package was published here: https://www.nuget.org/packages/SimpleResults.FluentValidation

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant