Releases: arahimx/BulkOperations
Releases · arahimx/BulkOperations
V1.0.0
[v1.0.0] - 2024-08-19
Initial Release
This is the initial release of BulkOperations.Package, a library designed to facilitate efficient bulk operations with Entity Framework Core.
Features
- Bulk Insert: Allows for the bulk insertion of entities into the database, improving performance with large datasets.
- Bulk Update: Enables updating multiple entities in a single operation, reducing the overhead of individual updates.
- Bulk Delete: Facilitates the deletion of multiple entities in a batch, optimizing the performance of mass deletions.
Requirements
- .NET 8 or higher
- Entity Framework Core
Usage
To get started with this release, refer to the README for detailed instructions on installation and usage.
Installation
Via NuGet Package Manager in Visual Studio:
- Open your project in Visual Studio.
- Right-click on your project in the Solution Explorer and select "Manage NuGet Packages...".
- In the NuGet Package Manager, go to the "Browse" tab.
- Search for "BulkOperations.Package".
- Click "Install" to add the package to your project.
Via .NET CLI:
- Open a terminal or command prompt.
- Navigate to the directory of your project.
- Run the following command:
dotnet add package BulkOperations.Package
Via Package Manager Console in Visual Studio:
- Open your project in Visual Studio.
- Go to "Tools" > "NuGet Package Manager" > "Package Manager Console".
- Run the following command:
Install-Package BulkOperations.Package