LightResults
LightResults copied to clipboard
An extremely light and modern Operation Result Pattern library for .NET.
Hey, any plan to support http status codes ? Like for Ardalis Result: https://github.com/ardalis/Result/blob/7d713988b3135898d401e8134259800dfa17aef9/src/Ardalis.Result.AspNetCore/MinimalApiResultExtensions.cs#L19
I want to create failure result from generic type. I have the value type and unable to pass it inside this method without getting method through reflection. Please add new...
I just wanted to implement custom error for validation and I've checked your docs, but found out that it's not working. I'm talking to: ```csharp public sealed class HttpError :...
Why `Errors` property is `IReadOnlyCollection` of `IError` interface? I don't get why a result can have multiple errors? I've never seen a use case of it
Hey, i do like the simplicity of your implementation. However i do like the handling that acts like a discriminated union some other implementation offer. So i implemented this api....