Resultix 1.0.0
dotnet add package Resultix --version 1.0.0
NuGet\Install-Package Resultix -Version 1.0.0
<PackageReference Include="Resultix" Version="1.0.0" />
<PackageVersion Include="Resultix" Version="1.0.0" />
<PackageReference Include="Resultix" />
paket add Resultix --version 1.0.0
#r "nuget: Resultix, 1.0.0"
#:package Resultix@1.0.0
#addin nuget:?package=Resultix&version=1.0.0
#tool nuget:?package=Resultix&version=1.0.0
Resultix
Stupidly simple result pattern for .NET
Why use this library?
Many result pattern libraries have confusing configuration and lots of customisation options, which can be overwhelming. This library is for you if you want a barebones, easy to use and understand result pattern in .NET.
Installation
Standard installation through NuGet.
NuGet CLI:
Install-Package Resultix
.NET core CLI
dotnet add package Resultix
Quick start
Returning a result from a function
You can use the out of the box Result<T>
type, which by default has an error type of System.Exception
. Or you can define your own error type, by using the generic overload Result<TResult, TError>
.
Consider the following code. We have a simple class called Movie
and a function GetMovie()
which returns Result<Movie>
.
using System;
using Resultix;
public class Movie
{
public int Id { get; set; }
public string Name { get; set; }
}
public class MovieService
{
// demo class - inner workings omitted for brevity
public Result<Movie> GetMovie(string movieName)
{
if (string.IsNullOrWhiteSpace(movieName))
return new ArgumentException($"{nameof(movieName)} cannot be null or whitespace"); // notice Exception is being returned, not thrown
var movie = _db.GetMovieByName(movieName);
if (movie is null)
return default;
return movie;
}
}
When returning types from a function with a signature of Result
, implicit operators in the Result
struct allow you to return the following types
- Any instance of
TResult
- which indicates a success result - Any instance of
TError
or (System.Exception
when usingResult<TResult>
) - which indicates a failure default
ordefault(TResult)
- which indicates a "None" result.
Resolving a result
Now you have a function returning a Result
, you can call that function and perform different actions depending on the result. Consider the following code.
public IHttpActionResult GetMovie(string movieName)
{
var result = GetMovie(movieName);
return result.Match(movie => Ok(movie), // onSuccess
error => BadRequest(error.Message) // onError
() => NotFound()); //onNone
}
Calling the Match()
function will call one of the 3 lambdas passed in, depending on the result. The first parameter, onSuccess
gets executed when the Result
is successful. The second parameter onError
gets called when TError
is returned from the GetMovie
function. The 3rd and final parameter, onNone
gets called when default
is returned from GetMovie()
.
The is an overload for Match()
which takes in System.Action
as the parameter types instead, for when you don't want to return a result from Match()
. There are also async versions available, named MatchAsync()
, which follow the same concept.
Optional configuration options
There is currently only one configuration option. This property lives in the ResultConfig
class and is called EnforceMatches
. When set to true it will cause an exception to be thrown if null is passed in for any of the lambdas in the Match()
and MatchAsync()
functions. The default value, false, means that you can pass null into the Match()
and MatchAsync()
functions if you don't want to handle certain results. This setting was designed to be set once, at application start-up.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last Updated |
---|---|---|
1.0.0 | 178 | 8/15/2024 |
First release of Resultix! Read the ReadMe for more info.