Vasconcellos.Common.Results 2.0.0

dotnet add package Vasconcellos.Common.Results --version 2.0.0
NuGet\Install-Package Vasconcellos.Common.Results -Version 2.0.0
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="Vasconcellos.Common.Results" Version="2.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Vasconcellos.Common.Results --version 2.0.0
#r "nuget: Vasconcellos.Common.Results, 2.0.0"
#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 Vasconcellos.Common.Results as a Cake Addin
#addin nuget:?package=Vasconcellos.Common.Results&version=2.0.0

// Install Vasconcellos.Common.Results as a Cake Tool
#tool nuget:?package=Vasconcellos.Common.Results&version=2.0.0

Vasconcellos Common

Description

Vasconcellos.Common is a library for using common functions.

License: MIT License
Author: Pedro Henrique Vasconcellos

Vasconcellos.Common.Result is a library to facilitate the return of function results with error messages handling.

Example of using the Vasconcellos.Common.Result [Service].

public async Task<Result<Guid>> ExecuteAsync(EmailCommand command)
{
    if (command == null)
        return Result<Guid>.Fail("COMMAND_IS_NULL","Request is null", ErrorType.BadDomain);
    try
    {
        var entity = new EmailEntity(command);
        if (entity.IsFailure)
            return Result<Guid>.Fail(entity.ErrorCode, entity.ErrorMessage, ErrorType.BadDomain);

        var result = await _triggerService.Executesync(entity);
        if (result.IsSuccess)
            return Result<Guid>.Success(result.Value);

        return Result<Guid>.Fail(result.Errors);
    }
    catch (Exception ex)
    {
        _logger.LogError($"Error: {ex.Message}", ex);
        return Result<Guid>.Fail("ERROR_EXCEPTION", ex.Message, ErrorType.Unexpected);
    }
}

Example of using the Vasconcellos.Common.Result [Controller].

    [HttpPost(Name = "post-example-1")]
    [ProducesResponseType(typeof(Guid), (int)HttpStatusCode.Create)]
    [ProducesResponseType(typeof(IEnumerable<Error>), (int)HttpStatusCode.BadRequest)]
    [ProducesResponseType(typeof(IEnumerable<Error>), (int)HttpStatusCode.NotFound)]
    [ProducesResponseType(typeof(IEnumerable<Error>), (int)HttpStatusCode.InternalServerError)]
    public async Task<IActionResult> PostExample1([FromBody] EmailCommand command)
    {
        var result = await _service.ExecuteAsync(command);

        if (result.IsSuccess)
            return this.StatusCode((int)HttpStatusCode.Create, result.Value);

        //It is recommended to use [method: GetGreaterStatus] to recover the last most serious error.
        return this.StatusCode((int)result.GetGreaterStatus(), result.Errors);
    }

    [HttpPost(Name = "post-example-2")]
    [ProducesResponseType(typeof(Guid), (int)HttpStatusCode.Create)]
    [ProducesResponseType(typeof(IEnumerable<Error>), (int)HttpStatusCode.BadRequest)]
    [ProducesResponseType(typeof(IEnumerable<Error>), (int)HttpStatusCode.NotFound)]
    [ProducesResponseType(typeof(IEnumerable<Error>), (int)HttpStatusCode.InternalServerError)]
    public async Task<IActionResult> PostExample2([FromBody] EmailCommand command)
    {
        var result = await _service.ExecuteAsync(command);

        if (result.IsSuccess)
            return this.StatusCode((int)HttpStatusCode.Create, result.Value);

        //The difference is here [method: GetLastStatus].
        return this.StatusCode((int)result.GetLastStatus(), result.Errors); 
    }

Vasconcellos Solutions

Vasconcellos IT Solutions

Product 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. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.1

    • 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
2.0.0 198 3/27/2023
1.1.0 180 3/23/2023

Add Result