IM-GlobalErrorHanling 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package IM-GlobalErrorHanling --version 1.0.0
NuGet\Install-Package IM-GlobalErrorHanling -Version 1.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="IM-GlobalErrorHanling" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add IM-GlobalErrorHanling --version 1.0.0
#r "nuget: IM-GlobalErrorHanling, 1.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 IM-GlobalErrorHanling as a Cake Addin
#addin nuget:?package=IM-GlobalErrorHanling&version=1.0.0

// Install IM-GlobalErrorHanling as a Cake Tool
#tool nuget:?package=IM-GlobalErrorHanling&version=1.0.0

Dependency

Created by İBRAHİM MEŞE .NET8

Install

Kurulum için bu kodu kullanın

public class ExampleBusinessRules(IExampleRepository exampleRepository):BaseBusinessRules
{
  public async Task ExampleNameCannotBeDupplicatedInserted(string name)
  {
      Example example = await exampleRepository.GetAsync(p=>p.Name.ToLower()==name.ToLower());
      if(example is not null )
      {
          throw new BusinessException("Name Is Exist");
      }
  }
}
public static class ApplicationServiceRegistration
{
  public static IServiceCollection AddApplicationServices(this IServiceCollection services)
  {

      services.AddSubClassesOfType(Assembly.GetExecutingAssembly(),typeof(BaseBusinessRules));
      return services;
  }
   public static IServiceCollection AddSubClassesOfType(
     this IServiceCollection services,
     Assembly assembly,
     Type type,
     Func<IServiceCollection, Type, IServiceCollection>? addWithLifeCycle = null
 )
  {
      var types = assembly.GetTypes().Where(t => t.IsSubclassOf(type) && type != t).ToList();
      foreach (var item in types)
          if (addWithLifeCycle == null)
              services.AddScoped(item);
          else
              addWithLifeCycle(services, type);
      return services;
  }
}

//Use
 await exampleBusinessRules.ExampleNameCannotBeDupplicatedInserted(request.Name);
    if (app.Environment.IsProduction())
         {
             app.ConfigureCustomExceptionMiddleware();
         }
//UseValidationException
 services.AddSubClassesOfType(Assembly.GetExecutingAssembly(),typeof(BaseBusinessRules));
services.AddMediatR(configuration =>
      {
          configuration.RegisterServicesFromAssembly(Assembly.GetExecutingAssembly());

          configuration.AddOpenBehavior(typeof(RequestValidationBehavior<,>));
      });
      return services;
public class CreateExampleCommandValidator:AbstractValidator<CreateExampleCommand>
{
 public CreateExampleCommandValidator()
 {
     RuleFor(c=>c.Name).NotEmpty().MinimumLength(2);
 }
}
//UseTransactionalRequest

  services.AddMediatR(configuration =>
     {
         configuration.RegisterServicesFromAssembly(Assembly.GetExecutingAssembly());

         configuration.AddOpenBehavior(typeof(TransactionScopeBehavior<,>));
     });
     return services;
public class CreateExampleCommand() :IRequest<CreatedExampleResponse>, ITransactionalRequest
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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.

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.4 69 5/20/2024
1.0.3 83 5/20/2024
1.0.2 80 5/19/2024
1.0.1 86 5/17/2024
1.0.0 79 5/16/2024

Global Error Handling And Transaction Nuget Package