IM-GlobalErrorHanling
1.0.0
There is a newer version of this package available.
See the version list below for details.
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
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#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
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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 | Versions 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.
-
net8.0
- FluentValidation.DependencyInjectionExtensions (>= 11.9.1)
- MediatR (>= 12.2.0)
- Microsoft.AspNetCore.Http.Abstractions (>= 2.2.0)
- Microsoft.AspNetCore.Mvc.Core (>= 2.2.5)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Global Error Handling And Transaction Nuget Package