BridgingIT.DevKit.Common.Abstractions 9.0.1-preview.0.189

This is a prerelease version of BridgingIT.DevKit.Common.Abstractions.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package BridgingIT.DevKit.Common.Abstractions --version 9.0.1-preview.0.189
                    
NuGet\Install-Package BridgingIT.DevKit.Common.Abstractions -Version 9.0.1-preview.0.189
                    
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="BridgingIT.DevKit.Common.Abstractions" Version="9.0.1-preview.0.189" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="BridgingIT.DevKit.Common.Abstractions" Version="9.0.1-preview.0.189" />
                    
Directory.Packages.props
<PackageReference Include="BridgingIT.DevKit.Common.Abstractions" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add BridgingIT.DevKit.Common.Abstractions --version 9.0.1-preview.0.189
                    
#r "nuget: BridgingIT.DevKit.Common.Abstractions, 9.0.1-preview.0.189"
                    
#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.
#addin nuget:?package=BridgingIT.DevKit.Common.Abstractions&version=9.0.1-preview.0.189&prerelease
                    
Install BridgingIT.DevKit.Common.Abstractions as a Cake Addin
#tool nuget:?package=BridgingIT.DevKit.Common.Abstractions&version=9.0.1-preview.0.189&prerelease
                    
Install BridgingIT.DevKit.Common.Abstractions as a Cake Tool

bITDevKit

Empowering developers with modular components for modern application development, centered around Domain-Driven Design principles.

Our goal is to empower developers by offering modular components that can be easily integrated into your projects. Whether you're working with repositories, commands, queries, or other components, the bITDevKit provides flexible solutions that can adapt to your specific needs.

This repository includes the complete source code for the bITDevKit, along with a variety of sample applications located in the ./examples folder within the solution. These samples serve as practical demonstrations of how to leverage the capabilities of the bITDevKit in real-world scenarios. All components are available as nuget packages.

For the latest updates and release notes, please refer to the RELEASES.

Join us in advancing the world of software development with the bITDevKit!


Result.cs Overview

The Result class encapsulates the outcome of an operation, promoting an expressive and error-tolerant way to handle success and failure states.

The Result class is a central component designed to encapsulate the outcome of an operation, providing a way to represent both successful and failed operations. This class promotes a more expressive and error-tolerant approach to handling operation results, encouraging the explicit declaration of success or failure states.

Returning a Result

To return a Result from a method, you typically define the method to return Result or Result<T>, where T is the type of the value returned in case of success. Here is an example method returning a Result:

public Result PerformOperation()
{
    // Your logic here
    
    if (success)
    {
        return Result.Success();
    }
    else
    {
        return Result.Failure(new Error("Operation Failed"));
    }
}

Handling a Result

When you receive a Result from a method, you can handle it by checking its success or failure state. Here's an example:

var result = PerformOperation();

if (result.IsSuccess)
{
    // Handle success
}
else
{
    // Handle failure
    var error = result.Error;
    Console.WriteLine(error.Message);
}

Using Typed Results

Sometimes, you may want to return a result with a value. This is where Result<T> comes in handy:

public Result<int> CalculateSum(int a, int b)
{
    if (a < 0 || b < 0)
    {
        return Result.Failure<int>(new Error("Inputs must be non-negative"));
    }

    return Result.Success(a + b);
}

Handling a Result<T> involves extracting the value if the operation was successful:

var result = CalculateSum(5, 10);

if (result.IsSuccess)
{
    int sum = result.Value;
    Console.WriteLine($"Sum: {sum}");
}
else
{
    Console.WriteLine(result.Error.Message);
}

Typed Errors

Typed errors provide a more specific and structured way to handle different error scenarios. For example, the EntityNotFoundResultError class can be used to represent an error where an entity is not found:

EntityNotFoundResultError.cs:
public class EntityNotFoundResultError : Error
{
    public EntityNotFoundResultError(string entityName, object key)
        : base($"Entity '{entityName}' with key '{key}' was not found.")
    {
    }
}

You can return this typed error as follows:

public Result GetEntity(int id)
{
    var entity = repository.FindById(id);

    if (entity == null)
    {
        return Result.Failure(new EntityNotFoundResultError("EntityName", id));
    }

    return Result.Success(entity);
}

When handling the result, you can check if the error is of a specific type:

var result = GetEntity(1);

if (result.IsSuccess)
{
    // Handle success
}
else if (result.Error is EntityNotFoundResultError)
{
    var error = (EntityNotFoundResultError)result.Error;
    Console.WriteLine(error.Message);
}
else
{
    // Handle other errors
}

Other available typed errors are:

By using typed errors, you can create more expressive and manageable error handling in your application.

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (14)

Showing the top 5 NuGet packages that depend on BridgingIT.DevKit.Common.Abstractions:

Package Downloads
BridgingIT.DevKit.Common.Utilities

BridgingIT DevKit: Empowering developers with modular components for modern application development, centered around Domain-Driven Design principles. Our goal is to empower developers by offering modular components that can be easily integrated into your projects. Whether you're working with repositories, commands, queries, or other components, the bITDevKit provides flexible solutions that can adapt to your specific needs.

BridgingIT.DevKit.Common.Serialization

BridgingIT DevKit: Empowering developers with modular components for modern application development, centered around Domain-Driven Design principles. Our goal is to empower developers by offering modular components that can be easily integrated into your projects. Whether you're working with repositories, commands, queries, or other components, the bITDevKit provides flexible solutions that can adapt to your specific needs.

BridgingIT.DevKit.Domain

BridgingIT DevKit: Empowering developers with modular components for modern application development, centered around Domain-Driven Design principles. Our goal is to empower developers by offering modular components that can be easily integrated into your projects. Whether you're working with repositories, commands, queries, or other components, the bITDevKit provides flexible solutions that can adapt to your specific needs.

BridgingIT.DevKit.Application.Messaging

BridgingIT DevKit: Empowering developers with modular components for modern application development, centered around Domain-Driven Design principles. Our goal is to empower developers by offering modular components that can be easily integrated into your projects. Whether you're working with repositories, commands, queries, or other components, the bITDevKit provides flexible solutions that can adapt to your specific needs.

BridgingIT.DevKit.Application.Storage

BridgingIT DevKit: Empowering developers with modular components for modern application development, centered around Domain-Driven Design principles. Our goal is to empower developers by offering modular components that can be easily integrated into your projects. Whether you're working with repositories, commands, queries, or other components, the bITDevKit provides flexible solutions that can adapt to your specific needs.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
9.0.1-preview.0.220 59 2 days ago
9.0.1-preview.0.219 31 2 days ago
9.0.1-preview.0.218 33 2 days ago
9.0.1-preview.0.217 74 2 days ago
9.0.1-preview.0.215 52 2 days ago
9.0.1-preview.0.214 34 2 days ago
9.0.1-preview.0.213 48 2 days ago
9.0.1-preview.0.212 57 2 days ago
9.0.1-preview.0.211 29 2 days ago
9.0.1-preview.0.210 36 2 days ago
9.0.1-preview.0.209 48 3 days ago
9.0.1-preview.0.208 53 3 days ago
9.0.1-preview.0.206 38 3 days ago
9.0.1-preview.0.205 42 3 days ago
9.0.1-preview.0.204 39 3 days ago
9.0.1-preview.0.202 33 4 days ago
9.0.1-preview.0.199 46 5 days ago
9.0.1-preview.0.198 84 7 days ago
9.0.1-preview.0.196 82 7 days ago
9.0.1-preview.0.193 81 7 days ago
9.0.1-preview.0.189 109 8 days ago
9.0.1-preview.0.188 436 9 days ago
9.0.1-preview.0.187 451 10 days ago
9.0.1-preview.0.186 435 10 days ago
9.0.1-preview.0.185 435 10 days ago
9.0.1-preview.0.184 434 10 days ago
9.0.1-preview.0.183 432 10 days ago
9.0.1-preview.0.182 48 13 days ago
9.0.1-preview.0.180 98 14 days ago
9.0.1-preview.0.179 105 14 days ago
9.0.1-preview.0.178 103 14 days ago
9.0.1-preview.0.175 105 14 days ago
9.0.1-preview.0.174 104 15 days ago
9.0.1-preview.0.173 119 15 days ago
9.0.1-preview.0.172 158 15 days ago
9.0.1-preview.0.171 108 16 days ago
9.0.1-preview.0.170 107 16 days ago
9.0.1-preview.0.165 105 17 days ago
9.0.1-preview.0.162 110 17 days ago
9.0.1-preview.0.160 109 17 days ago
9.0.1-preview.0.152 89 20 days ago
9.0.1-preview.0.148 125 21 days ago
9.0.1-preview.0.147 112 22 days ago
9.0.1-preview.0.146 109 22 days ago
9.0.1-preview.0.145 116 22 days ago
9.0.1-preview.0.141 118 23 days ago
9.0.1-preview.0.140 156 24 days ago
9.0.1-preview.0.139 114 24 days ago
9.0.1-preview.0.138 127 24 days ago
9.0.1-preview.0.137 110 a month ago
9.0.1-preview.0.135 123 a month ago
9.0.1-preview.0.134 162 a month ago
9.0.1-preview.0.133 157 a month ago
9.0.1-preview.0.132 154 a month ago
9.0.1-preview.0.130 154 a month ago
9.0.1-preview.0.129 207 a month ago
9.0.1-preview.0.128 159 a month ago
9.0.1-preview.0.127 165 a month ago
9.0.1-preview.0.125 170 a month ago
9.0.1-preview.0.119 69 a month ago
9.0.1-preview.0.118 53 a month ago
9.0.1-preview.0.116 58 a month ago
9.0.1-preview.0.112 47 a month ago
9.0.1-preview.0.111 52 a month ago
9.0.1-preview.0.110 105 a month ago
9.0.1-preview.0.107 55 a month ago
9.0.1-preview.0.106 55 a month ago
9.0.1-preview.0.105 58 a month ago
9.0.1-preview.0.104 62 a month ago
9.0.1-preview.0.103 80 a month ago
9.0.1-preview.0.102 76 a month ago
9.0.1-preview.0.100 49 a month ago
9.0.1-preview.0.99 89 a month ago
9.0.1-preview.0.97 59 a month ago
9.0.1-preview.0.96 50 a month ago
9.0.1-preview.0.94 53 a month ago
9.0.1-preview.0.93 79 a month ago
9.0.1-preview.0.92 54 a month ago
9.0.1-preview.0.91 46 a month ago
9.0.1-preview.0.88 47 a month ago
9.0.1-preview.0.87 233 2 months ago
9.0.1-preview.0.85 251 2 months ago
9.0.1-preview.0.84 194 2 months ago
9.0.1-preview.0.82 153 2 months ago
9.0.1-preview.0.79 162 2 months ago
9.0.1-preview.0.78 180 2 months ago
9.0.1-preview.0.77 152 2 months ago
9.0.1-preview.0.76 196 2 months ago
9.0.1-preview.0.73 185 2 months ago
9.0.1-preview.0.71 126 2 months ago
9.0.1-preview.0.70 177 2 months ago
9.0.1-preview.0.69 165 2 months ago
9.0.1-preview.0.67 176 2 months ago
9.0.1-preview.0.62 159 2 months ago
9.0.1-preview.0.58 68 2 months ago
9.0.1-preview.0.56 56 2 months ago
9.0.1-preview.0.55 45 2 months ago
9.0.1-preview.0.54 47 2 months ago
9.0.1-preview.0.53 46 2 months ago
9.0.1-preview.0.52 48 2 months ago
9.0.1-preview.0.50 63 2 months ago
9.0.1-preview.0.49 84 2 months ago
9.0.1-preview.0.47 50 2 months ago
9.0.1-preview.0.45 53 2 months ago
9.0.1-preview.0.43 57 2 months ago
9.0.1-preview.0.42 52 2 months ago
9.0.1-preview.0.41 56 2 months ago
9.0.1-preview.0.35 54 2 months ago
9.0.1-preview.0.20 52 2 months ago
9.0.1-preview.0.19 48 2 months ago
9.0.1-preview.0.18 51 2 months ago
9.0.1-preview.0.14 51 2 months ago
9.0.1-preview.0.13 56 2 months ago
9.0.1-preview.0.11 45 2 months ago
9.0.1-preview.0.10 45 2 months ago
9.0.1-preview.0.9 50 2 months ago
9.0.1-preview.0.2 104 2 months ago
3.0.5-preview.0.2 35 2 days ago
3.0.5-preview.0.1 70 2 months ago
3.0.4 442 2 months ago
3.0.4-preview.0.38 57 2 months ago
3.0.4-preview.0.37 96 4 months ago
3.0.4-preview.0.36 190 4 months ago
3.0.4-preview.0.34 62 4 months ago
3.0.4-preview.0.32 63 4 months ago
3.0.4-preview.0.31 81 4 months ago
3.0.4-preview.0.30 59 4 months ago
3.0.4-preview.0.29 51 4 months ago
3.0.4-preview.0.28 112 4 months ago
3.0.4-preview.0.27 52 4 months ago
3.0.4-preview.0.23 53 4 months ago
3.0.4-preview.0.21 47 4 months ago
3.0.4-preview.0.20 51 5 months ago
3.0.4-preview.0.19 62 5 months ago
3.0.4-preview.0.18 48 5 months ago
3.0.4-preview.0.17 51 5 months ago
3.0.4-preview.0.16 52 5 months ago
3.0.4-preview.0.15 52 5 months ago
3.0.4-preview.0.14 68 5 months ago
3.0.4-preview.0.13 61 5 months ago
3.0.4-preview.0.12 57 5 months ago
3.0.4-preview.0.8 62 5 months ago
3.0.4-preview.0.7 60 5 months ago
3.0.4-preview.0.6 52 5 months ago
3.0.4-preview.0.5 62 5 months ago
3.0.4-preview.0.4 51 5 months ago
3.0.4-preview.0.3 54 5 months ago
3.0.4-preview.0.2 58 5 months ago
3.0.4-preview.0.1 188 6 months ago
3.0.3 379 6 months ago
3.0.3-preview.0.56 69 6 months ago
3.0.3-preview.0.55 64 6 months ago
3.0.3-preview.0.54 66 6 months ago
3.0.3-preview.0.50 61 6 months ago
3.0.3-preview.0.49 79 6 months ago
3.0.3-preview.0.44 84 6 months ago
3.0.3-preview.0.43 59 6 months ago
3.0.3-preview.0.42 59 6 months ago
3.0.3-preview.0.41 62 6 months ago
3.0.3-preview.0.40 90 6 months ago
3.0.3-preview.0.39 64 6 months ago
3.0.3-preview.0.38 61 6 months ago
3.0.3-preview.0.36 66 6 months ago
3.0.3-preview.0.35 76 6 months ago
3.0.3-preview.0.34 72 6 months ago
3.0.3-preview.0.33 59 6 months ago
3.0.3-preview.0.32 89 6 months ago
3.0.3-preview.0.31 617 7 months ago
3.0.3-preview.0.30 59 7 months ago
3.0.3-preview.0.29 56 7 months ago
3.0.3-preview.0.28 48 7 months ago
3.0.3-preview.0.27 67 7 months ago
3.0.3-preview.0.26 68 7 months ago
3.0.3-preview.0.25 57 7 months ago
3.0.3-preview.0.24 67 7 months ago
3.0.3-preview.0.23 81 7 months ago
3.0.3-preview.0.22 48 8 months ago
3.0.3-preview.0.21 68 8 months ago
3.0.3-preview.0.18 71 9 months ago
3.0.3-preview.0.17 61 9 months ago
3.0.3-preview.0.16 51 9 months ago
3.0.3-preview.0.15 59 9 months ago
3.0.3-preview.0.14 122 9 months ago
3.0.3-preview.0.13 84 9 months ago
3.0.3-preview.0.12 75 9 months ago
3.0.3-preview.0.11 73 9 months ago
3.0.3-preview.0.9 356 5/27/2024
3.0.3-preview.0.8 70 5/27/2024
3.0.3-preview.0.7 96 5/17/2024
3.0.3-preview.0.6 71 5/14/2024
3.0.3-preview.0.5 245 5/8/2024
3.0.3-preview.0.3 95 5/6/2024
3.0.3-preview.0.1 78 4/25/2024
3.0.2 1,200 4/25/2024
3.0.2-preview.0.4 91 4/25/2024
3.0.2-preview.0.3 144 4/25/2024
3.0.2-preview.0.2 95 4/25/2024
3.0.2-preview.0.1 73 4/25/2024
3.0.1 429 4/25/2024
3.0.1-preview.0.10 77 4/24/2024
3.0.1-preview.0.9 182 4/19/2024
3.0.1-preview.0.8 66 4/24/2024
3.0.1-preview.0.7 131 4/24/2024

## Release 3.0.1 [25.04.24]

- [N] Initial release

-----

- [N] New
- [M] Modified
- [B] Breaking