Bat.EntityFrameworkCore.Tools
10.0.0
dotnet add package Bat.EntityFrameworkCore.Tools --version 10.0.0
NuGet\Install-Package Bat.EntityFrameworkCore.Tools -Version 10.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="Bat.EntityFrameworkCore.Tools" Version="10.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Bat.EntityFrameworkCore.Tools" Version="10.0.0" />
<PackageReference Include="Bat.EntityFrameworkCore.Tools" />
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 Bat.EntityFrameworkCore.Tools --version 10.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Bat.EntityFrameworkCore.Tools, 10.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.
#:package Bat.EntityFrameworkCore.Tools@10.0.0
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Bat.EntityFrameworkCore.Tools&version=10.0.0
#tool nuget:?package=Bat.EntityFrameworkCore.Tools&version=10.0.0
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 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. net9.0 was computed. 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. net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net10.0
- Bat.EntityFrameworkCore (>= 10.0.0)
- EFCore.BulkExtensions.SqlServer (>= 10.0.0-rc.2)
-
net8.0
- Bat.EntityFrameworkCore (>= 8.0.19)
- EFCore.BulkExtensions.SqlServer (>= 8.1.3)
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 |
|---|---|---|
| 10.0.0 | 160 | 12/24/2025 |
| 8.0.19 | 338 | 8/5/2025 |
| 8.0.18 | 196 | 7/29/2025 |
| 8.0.11 | 304 | 11/26/2024 |
| 8.0.1 | 605 | 1/22/2024 |
| 8.0.0 | 267 | 12/1/2023 |
| 7.0.3 | 566 | 3/1/2023 |
| 7.0.2 | 451 | 2/4/2023 |
| 7.0.0 | 522 | 12/6/2022 |
| 6.0.22 | 295 | 8/21/2023 |
| 6.0.21 | 259 | 8/19/2023 |
| 6.0.1 | 973 | 3/27/2022 |
| 1.1.4 | 614 | 12/26/2021 |
| 1.1.3 | 737 | 7/12/2021 |
| 1.1.2 | 602 | 7/12/2021 |
| 1.1.1 | 694 | 4/14/2021 |
| 1.1.0 | 712 | 3/26/2021 |
| 1.0.8 | 639 | 2/7/2021 |
| 1.0.7 | 663 | 2/4/2021 |
| 1.0.6 | 655 | 1/30/2021 |
| 1.0.5 | 773 | 10/27/2020 |
| 1.0.4 | 797 | 10/20/2020 |
- Upgrade to Net10.0 and C#14.0
- Upgrade to EF10.x
- Add BulkRepositoryFactory
- Add GetBulkRepository ExtensionMethod