Ether.Outcomes
1.1.0
See the version list below for details.
Requires NuGet 2.8.1 or higher.
dotnet add package Ether.Outcomes --version 1.1.0
NuGet\Install-Package Ether.Outcomes -Version 1.1.0
<PackageReference Include="Ether.Outcomes" Version="1.1.0" />
paket add Ether.Outcomes --version 1.1.0
#r "nuget: Ether.Outcomes, 1.1.0"
// Install Ether.Outcomes as a Cake Addin #addin nuget:?package=Ether.Outcomes&version=1.1.0 // Install Ether.Outcomes as a Cake Tool #tool nuget:?package=Ether.Outcomes&version=1.1.0
Outcome.NET is a fluent, generic response wrapper for .NET that eliminates plumbing code around failure-prone functions.
Ever write a method that could fail intermittently, like a call to a particularly flaky web service?
Typically, you handle this one of three ways: by throwing/catching exceptions, by tacking boilerplate code onto your result with metadata to indicate success or failure, or by wrapping the result in another object.
All of these work, but they're plumbing, and that's wasteful. Outcome.NET takes the third approach and extends it, providing an expressive, fluent wrapper that just works.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net is compatible. |
This package has no dependencies.
NuGet packages (4)
Showing the top 4 NuGet packages that depend on Ether.Outcomes:
Package | Downloads |
---|---|
CQRSlight
Simple abstractions for *Command and *Query parts of CQRS pattern |
|
CQRSlight.Db
Simple database-adapted abstractions for *Command and *Query parts of CQRS pattern |
|
Ether.Outcomes.Composer
Outcome.NET uses generics and a fluent interface to add metadata to your return value. It's a very expressive, clean result wrapper. Outcome really shines when you're orchestrating complex logic, because the fluent interface makes it easy to roll up messages from multiple methods, and even from unusual sources like exceptions. The resulting code is very clean, and is great way to implement the Notification pattern. |
|
Notif.Abstractions
Notif.Abstractions - notificaion abstractions for .NET Standard |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
3.1.0-alpha | 2,091 | 4/14/2023 |
3.0.0-alpha | 1,097 | 4/14/2023 |
2.9.5 | 96,557 | 10/9/2018 |
2.9.4-beta | 2,013 | 3/1/2018 |
2.9.3-beta | 1,802 | 3/1/2018 |
2.9.2-alpha | 3,418 | 1/18/2018 |
2.9.1-alpha | 1,766 | 11/6/2017 |
2.9.0-alpha | 1,741 | 10/24/2017 |
2.8.2-alpha | 1,865 | 3/28/2017 |
2.8.1-alpha | 1,957 | 1/10/2017 |
2.8.0-alpha | 1,881 | 1/10/2017 |
2.7.0-alpha | 1,854 | 10/19/2016 |
2.6.0-alpha | 1,879 | 8/18/2016 |
2.5.0-alpha | 1,864 | 8/12/2016 |
2.4.0-alpha | 1,842 | 7/19/2016 |
2.3.0-alpha | 1,906 | 5/31/2016 |
2.2.0 | 13,917 | 11/25/2015 |
2.2.0-alpha | 1,919 | 6/22/2015 |
2.1.1-alpha | 1,921 | 6/17/2015 |
2.1.0-alpha | 1,912 | 6/17/2015 |
2.0.2-alpha | 1,938 | 5/7/2015 |
2.0.1-alpha | 2,126 | 4/29/2015 |
2.0.0-alpha | 1,906 | 3/30/2015 |
1.3.1 | 2,472 | 3/27/2015 |
1.3.1-alpha | 1,961 | 3/26/2015 |
1.3.0-alpha | 1,928 | 3/23/2015 |
1.2.0 | 2,466 | 2/11/2015 |
1.1.0 | 2,708 | 11/14/2014 |
1.0.5 | 2,495 | 10/30/2014 |
1.0.4 | 2,241 | 8/7/2014 |
1.0.3 | 2,250 | 6/21/2014 |
1.0.2 | 2,185 | 6/17/2014 |
1.0.1 | 2,190 | 6/17/2014 |
1.0.0 | 2,222 | 6/17/2014 |
- More documentation around classes and methods.
- Added syntactic sugar to support rolling up messages from other outcome objects.
- Removed an exception from Failure.FromOutcome() that threw if the source outcome had Success = True. This was limiting and unecessary.