We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
FluentResult v3.16.0
var result = new Result(); result.Errors.Add(new Error("A")); var errorCount = result.Errors.Count();
errorCount is 0 but I'd expect 1 result.IsFailed is false, but I'd expect true
var result = new Result(); result.Reasons.Add(new Error("A")); var errorCount = result.Errors.Count();
errorCount is 1 result.IsFailed is true
The text was updated successfully, but these errors were encountered:
I think I've fallen into the trap raised by #197 which is fixed in the open PR #164
Sorry, something went wrong.
No branches or pull requests
FluentResult v3.16.0
errorCount is 0 but I'd expect 1
result.IsFailed is false, but I'd expect true
errorCount is 1
result.IsFailed is true
The text was updated successfully, but these errors were encountered: