IM-GlobalErrorHanling 1.0.1

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

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

Dependency

Created by İBRAHİM MEŞE .NET8

Install

Kurulum için bu kodu kullanın

Services

 public static class ApplicationServiceRegistration
{
    public static IServiceCollection AddApplicationServices(this IServiceCollection services)
    {
        //UseAutoMapper
        services.AddAutoMapper(Assembly.GetExecutingAssembly());

        //UseBusinessException
        services.AddSubClassesOfType(Assembly.GetExecutingAssembly(),typeof(BaseBusinessRules));
      
       
       //UseValidationException
        services.AddValidatorsFromAssembly(Assembly.GetExecutingAssembly());

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

            //UseValidationBehavior
            configuration.AddOpenBehavior(typeof(RequestValidationBehavior<,>)); 

            //UseTransactionBehavior
            configuration.AddOpenBehavior(typeof(TransactionScopeBehavior<,>));

            //UseLoggingBehavior
            configuration.AddOpenBehavior(typeof(LoggingBehavior<,>));
        });
        //UseLoggerService FileLog or MsSqlLog
       // services.AddSingleton<LoggerServiceBase, FileLogger>();
        services.AddSingleton<LoggerServiceBase, MsSqlLogger>();
        return services;
    }
    //BaseBusinessRules Assembly
    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;
    }

}

Program.cs

   
    builder.Services.AddApplicationServices();
    //LoggerImplement
     builder.Services.AddHttpContextAccessor();

     //Middleware
       if (app.Environment.IsProduction())
            {
                app.ConfigureCustomExceptionMiddleware();
            }

appsettings

   "SeriLogConfigurations": {
    "FileLogConfiguration": {
      "FolderPath": "/logs/"
    },
    "MsSqlConfiguration": {
      "AutoCreateSqlTable": true,
      "ConnectionString": "DatabaseConnection",
      "TableName": "Logs"
    }
  },

Command

    //UseTransaction And Logging
   public class CreateExampleCommand() :IRequest<CreatedExampleResponse>, ITransactionalRequest,ILoggableRequest

Handler

    internal sealed class CreateExampleCommandHandler(
        IExampleRepository exampleRepository,
        IMapper mapper,
        ExampleBusinessRules exampleBusinessRules
        ) : IRequestHandler<CreateExampleCommand, CreatedExampleResponse>
    {
   public async Task<CreatedExampleResponse> Handle(CreateExampleCommand request, CancellationToken cancellationToken)
        {
            //Use Business Rules
            await exampleBusinessRules.ExampleNameCannotBeDupplicatedInserted(request.Name);

            Examle example = mapper.Map<Examle>(request);
            example.Id = Guid.NewGuid();


            var result = await exampleRepository.AddAsync(example, cancellationToken);

            CreatedExampleResponse createdExampleResponse = mapper.Map<CreatedExampleResponse>(result);

            return createdExampleResponse;


        }

BusinessException

     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");
        }
    }
}

ValidationException

    public class ExampleCommandValidator:AbstractValidator<CreateExampleCommand>
{
    public CreateExampleCommandValidator()
    {
        RuleFor(c=>c.Name).NotEmpty().MinimumLength(2);
    }
}

NugetPackages

    install WebApi nugetPackages: serilog, serilog.sinks.mssql, serilog.sinks.file, EntityFrameworkCore.Tools
    add folder path webApi /logs/
    install Application nugetPackages: AutoMapper, FluentValidationDependencyInjections, MediatR

MsSql Query

   //Add New Query Database

      CREATE TABLE [Logs] (

   [Id] int IDENTITY(1,1) NOT NULL,
   [Message] nvarchar(max) NULL,
   [MessageTemplate] nvarchar(max) NULL,
   [Level] nvarchar(128) NULL,
   [TimeStamp] datetime NOT NULL,
   [Exception] nvarchar(max) NULL,
   [Properties] nvarchar(max) NULL

   CONSTRAINT [PK_Logs] PRIMARY KEY CLUSTERED ([Id] ASC)
);
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