Resultron
A modern Result Pattern library for building reliable applications without unnecessary exceptions.
var result = await userService.CreateAsync(request);
return result.Match(
success => Ok(success),
failure => BadRequest(failure.Errors)
);
Strongly typed success and failure flows.
Map, Bind and compose operations.
Designed for modern .NET applications.
Clean error aggregation support.
Built-in paged result models.