Gleeman.EffectiveResult 6.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package Gleeman.EffectiveResult --version 6.0.1
NuGet\Install-Package Gleeman.EffectiveResult -Version 6.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Gleeman.EffectiveResult" Version="6.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Gleeman.EffectiveResult --version 6.0.1
#r "nuget: Gleeman.EffectiveResult, 6.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Gleeman.EffectiveResult as a Cake Addin
#addin nuget:?package=Gleeman.EffectiveResult&version=6.0.1

// Install Gleeman.EffectiveResult as a Cake Tool
#tool nuget:?package=Gleeman.EffectiveResult&version=6.0.1

Effective Result

Result pattern for returning from domain and services.

dotnet CLI

$ dotnet add package Gleeman.EffectiveResult
Result<T> Ok(T value = null, IEnumerable<T> values = null, string message = null)
Result<T> OkAsync(T value = null, IEnumerable<T> values = null, string message = null)
Result<T> Fail(string errorMessage = null, IEnumerable<string> errorMessages = null)
Result<T> FailAsync(string errorMessage = null, IEnumerable<string> errorMessages = null)

Result Ok(string message = null)
Result OkAsync(string message = null)
Result Fail(string errorMessage = null, IEnumerable<string> errorMessages = null)
Result FailAsync(string errorMessage = null, IEnumerable<string> errorMessages = null)

USAGE

public class User
{
    private static List<User> _users = new();
    public string FirstName { get; private set; }
    public string LastName { get; private set; }
    public string Email { get; private set; }

    // CreateUser Sync
    public static Result<User> CreateUser(string firstName, string lastName, string email)
    {
        var errors = new List<string>();
        if (string.IsNullOrEmpty(firstName)) errors.Add("First name cannot be empty!");
        if (string.IsNullOrEmpty(lastName)) errors.Add("Last name cannot be empty!");
        if (string.IsNullOrEmpty(email)) errors.Add("Email cannot be empty!");

        if (errors.Count > 0)
            return Result<User>.Fail(errorMessages: errors);

        User user = new()
        {
            FirstName = firstName,
            LastName = lastName,
            Email = email
        };

        _users.Add(user);
        return Result<User>.Ok(user);
    }

    // CreateUser Async
    public static async Task<Result<User>> CreateUserAsync(string firstName, string lastName, string email)
    {
        var errors = new List<string>();
        if (string.IsNullOrEmpty(firstName)) errors.Add("First name cannot be empty!");
        if (string.IsNullOrEmpty(lastName)) errors.Add("Last name cannot be empty!");
        if (string.IsNullOrEmpty(email)) errors.Add("Email cannot be empty!");

        if (errors.Count > 0)
            return await Result<User>.FailAsync(errorMessages: errors);

        User user = new()
        {
            FirstName = firstName,
            LastName = lastName,
            Email = email
        };
       _users.Add(user);
        return await Result<User>.OkAsync(user);
    }

    // ChangeEmail Sync
    public static Result ChangeEmail(string email)
    {
        if (string.IsNullOrEmpty(email))
            return Result.Fail("Email cannot be empty!");
        return Result.Ok();
    }

    // ChangeEmail Async
    public static async Task<Result> ChangeEmailAsync(string email)
    {
        if (string.IsNullOrEmpty(email))
            return await Result.FailAsync("Email cannot be empty!");
        return await Result.OkAsync();
    }

    // GetUsers
    public static Result<User> GetUsers()
      => Result<User>.Ok(values: _users);
}
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net6.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
8.2.0 99 2/3/2024
8.1.0 75 2/2/2024
8.0.0 78 2/1/2024
7.2.0 76 2/3/2024
7.1.0 75 2/2/2024
7.0.2 76 2/1/2024
7.0.1 209 11/4/2023
7.0.0 100 11/3/2023
6.0.1 100 11/4/2023