Bat.EntityFrameworkCore.Tools
7.0.3
.NET 5.0
.NET Standard 2.1
dotnet add package Bat.EntityFrameworkCore.Tools --version 7.0.3
NuGet\Install-Package Bat.EntityFrameworkCore.Tools -Version 7.0.3
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="Bat.EntityFrameworkCore.Tools" Version="7.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Bat.EntityFrameworkCore.Tools --version 7.0.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Bat.EntityFrameworkCore.Tools, 7.0.3"
#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 Bat.EntityFrameworkCore.Tools as a Cake Addin
#addin nuget:?package=Bat.EntityFrameworkCore.Tools&version=7.0.3
// Install Bat.EntityFrameworkCore.Tools as a Cake Tool
#tool nuget:?package=Bat.EntityFrameworkCore.Tools&version=7.0.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
For use Bat.EntityFrameworkCore.Tools just do it :
1- Install Bat.EntityFrameworkCore.Tools on your project
2- Register IEFBulkGenericRepo<TEntity> to service container for example :
builder.Services.AddTransient<IEFBulkGenericRepo<User>, EFBulkGenericRepo<User>>();
builder.Services.AddTransient<IEFBulkGenericRepo<Address>, EFBulkGenericRepo<Address>>();
builder.Services.AddScoped<AppBulkUnitOfWork>();
3- Use it in bussiness logic for example :
// Create DbContext
public class AppDbContext : BatDbContext
{
public AppDbContext() { }
public AppDbContext(DbContextOptions<AppDbContext> options) : base(options) { }
protected override void OnModelCreating(ModelBuilder builder)
{
builder.ApplyConfigurationsFromAssembly(typeof(AppUnitOfWork).Assembly);
base.OnModelCreating(builder);
}
public DbSet<User> Users { get; set; }
public DbSet<Address> Addresses { get; set; }
}
// Create UnitOfWork
public class AppBulkUnitOfWork
{
private readonly AppDbContext _appDbContext;
private readonly IServiceProvider _serviceProvider;
public AppBulkUnitOfWork(AppDbContext appDbContext, IServiceProvider serviceProvider)
{
_appDbContext = appDbContext;
_serviceProvider = serviceProvider;
}
public EFBulkGenericRepo<User> UserBulkRepo => (EFBulkGenericRepo<User>)_serviceProvider.GetRequiredService<IEFBulkGenericRepo<User>>();
public EFBulkGenericRepo<Address> AddressBulkRepo => (EFBulkGenericRepo<Address>)_serviceProvider.GetRequiredService<IEFBulkGenericRepo<Address>>();
public EFBulkGenericRepo<T> GetBulkRepository<T>() where T : class, IBaseEntity
=> EFBulkGenericRepo<T>)_serviceProvider.GetRequiredService<IEFBulkGenericRepo<T>>();
public void Dispose()
{
_appDbContext.Dispose();
GC.SuppressFinalize(this);
}
}
// Use power Off EFBulkGenericRepo
public class UserService : IUserService
{
private readonly AppBulkUnitOfWork _appBulkUow;
public UserService(AppBulkUnitOfWork appBulkUow)
{
_appBulkUow = appBulkUow;
}
public async Task ExecuteSample()
{
var users = new List<User>
{
new User { UserId = 1, FirstName = "Mehdi", LastName = "Norouzi" },
new User { UserId = 2, FirstName = "Mehran", LastName = "Norouzi" },
new User { UserId = 3, FirstName = "Kamran", LastName = "Norouzi" }
};
await _appBulkUow.UserBulkRepo.BulkInsertAsync(users);
await _appBulkUow.GetBulkRepository<User>().BulkDeleteAsync(users);
}
}
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows |
.NET Core | netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.1 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.1
- Bat.EntityFrameworkCore (>= 1.1.3)
- EFCore.BulkExtensions (>= 5.2.8)
- Microsoft.EntityFrameworkCore.Analyzers (>= 3.1.16)
- Microsoft.EntityFrameworkCore.Relational (>= 3.1.16)
-
net5.0
- Bat.EntityFrameworkCore (>= 1.1.3)
- EFCore.BulkExtensions (>= 5.2.8)
- Microsoft.EntityFrameworkCore.Analyzers (>= 5.0.13)
- Microsoft.EntityFrameworkCore.Relational (>= 5.0.13)
-
net6.0
- Bat.EntityFrameworkCore (>= 7.0.2)
- EFCore.BulkExtensions (>= 7.0.1)
- Microsoft.EntityFrameworkCore.Analyzers (>= 7.0.2)
- Microsoft.EntityFrameworkCore.Relational (>= 7.0.2)
-
net7.0
- Bat.EntityFrameworkCore (>= 7.0.3)
- EFCore.BulkExtensions (>= 7.0.1)
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 |
---|---|---|
7.0.3 | 91 | 3/1/2023 |
7.0.2 | 110 | 2/4/2023 |
7.0.0 | 178 | 12/6/2022 |
6.0.1 | 502 | 3/27/2022 |
1.1.4 | 279 | 12/26/2021 |
1.1.3 | 383 | 7/12/2021 |
1.1.2 | 299 | 7/12/2021 |
1.1.1 | 378 | 4/14/2021 |
1.1.0 | 386 | 3/26/2021 |
1.0.8 | 330 | 2/7/2021 |
1.0.7 | 367 | 2/4/2021 |
1.0.6 | 339 | 1/30/2021 |
1.0.5 | 428 | 10/27/2020 |
1.0.4 | 459 | 10/20/2020 |
- Upgrade To .Net 7.0.3
- Add BulkRepositoryFactory
- Add GetBulkRepository ExtensionMethod