Skip to content

V1.0.0

Latest

Choose a tag to compare

@arahimx arahimx released this 19 Aug 07:05
· 16 commits to master since this release
7eb76ba

[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:

  1. Open your project in Visual Studio.
  2. Right-click on your project in the Solution Explorer and select "Manage NuGet Packages...".
  3. In the NuGet Package Manager, go to the "Browse" tab.
  4. Search for "BulkOperations.Package".
  5. Click "Install" to add the package to your project.

Via .NET CLI:

  1. Open a terminal or command prompt.
  2. Navigate to the directory of your project.
  3. Run the following command:
    dotnet add package BulkOperations.Package
    

Via Package Manager Console in Visual Studio:

  1. Open your project in Visual Studio.
  2. Go to "Tools" > "NuGet Package Manager" > "Package Manager Console".
  3. Run the following command:
    Install-Package BulkOperations.Package