BulkOperations.Package 1.0.0

dotnet add package BulkOperations.Package --version 1.0.0
                    
NuGet\Install-Package BulkOperations.Package -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="BulkOperations.Package" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="BulkOperations.Package" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="BulkOperations.Package" />
                    
Project file
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 BulkOperations.Package --version 1.0.0
                    
#r "nuget: BulkOperations.Package, 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.
#:package BulkOperations.Package@1.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=BulkOperations.Package&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=BulkOperations.Package&version=1.0.0
                    
Install as a Cake Tool

[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. This method improves performance when dealing 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.

Usage

To get started with this release, refer to the README for detailed instructions on installation and usage.

Installation

Via NuGet Package Manager
  1. Open your project in Visual Studio.
  2. Right-click on your project in the Solution Explorer and select "Manage NuGet Packages..."
  3. Search for BulkOperations.Package.
  4. Click "Install" to add the package to your project.
Via .NET CLI
dotnet add package BulkOperations.Package
Product 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 was computed.  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.

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
1.0.0 168 8/19/2024

Initial release of BulkOperations.Package with support for bulk insert, update, and delete operations.