FlexLabs.EntityFrameworkCore.Upsert
6.0.1
See the version list below for details.
dotnet add package FlexLabs.EntityFrameworkCore.Upsert --version 6.0.1
NuGet\Install-Package FlexLabs.EntityFrameworkCore.Upsert -Version 6.0.1
<PackageReference Include="FlexLabs.EntityFrameworkCore.Upsert" Version="6.0.1" />
paket add FlexLabs.EntityFrameworkCore.Upsert --version 6.0.1
#r "nuget: FlexLabs.EntityFrameworkCore.Upsert, 6.0.1"
// Install FlexLabs.EntityFrameworkCore.Upsert as a Cake Addin #addin nuget:?package=FlexLabs.EntityFrameworkCore.Upsert&version=6.0.1 // Install FlexLabs.EntityFrameworkCore.Upsert as a Cake Tool #tool nuget:?package=FlexLabs.EntityFrameworkCore.Upsert&version=6.0.1
Adds basic support for "Upsert" operations to EF Core.
Uses `INSERT … ON CONFLICT DO UPDATE` in PostgreSQL/Sqlite, `MERGE` in SqlServer and `INSERT INTO … ON DUPLICATE KEY UPDATE` in MySQL.
Also supports injecting sql command generators to add support for other providers
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. 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. |
-
net6.0
- Microsoft.EntityFrameworkCore.Relational (>= 6.0.0)
NuGet packages (14)
Showing the top 5 NuGet packages that depend on FlexLabs.EntityFrameworkCore.Upsert:
Package | Downloads |
---|---|
FenixAlliance.ACL.Dependencies
Application Component for the Alliance Business Suite. |
|
HwApp.Core
HwApp Core |
|
Elsa.Persistence.EntityFrameworkCore
Elsa is a set of workflow libraries and tools that enable super-fast workflowing capabilities in any .NET Core application. This package provides an Entity Framework Core persistence provider. |
|
YYApp
YYApp Core |
|
QuantFi.Services
Package Description |
GitHub repositories (3)
Showing the top 3 popular GitHub repositories that depend on FlexLabs.EntityFrameworkCore.Upsert:
Repository | Stars |
---|---|
zoriya/Kyoo
A portable and vast media library solution.
|
|
Texnomic/SecureDNS
Secure, Modern, Fully-Featured, All-In-One Cross-Architecture & Cross-Platform DNS Server Using .NET 8.0
|
|
Kukks/NNostr
A Nostr Relay and Client written in C#
|
Version | Downloads | Last updated |
---|---|---|
8.0.0 | 833,502 | 12/3/2023 |
7.0.0 | 905,000 | 12/18/2022 |
7.0.0-beta.2 | 6,219 | 11/22/2022 |
7.0.0-beta.1 | 436 | 11/16/2022 |
6.0.2 | 451,682 | 11/16/2022 |
6.0.1 | 3,688,779 | 1/2/2022 |
6.0.0-preview5 | 57,069 | 7/11/2021 |
5.1.0 | 66,664 | 1/2/2022 |
5.0.0 | 362,846 | 7/11/2021 |
4.0.1 | 32,830 | 7/11/2021 |
4.0.0 | 378,683 | 3/2/2021 |
3.1.0 | 2,135,312 | 1/26/2020 |
3.0.0 | 106,804 | 9/29/2019 |
3.0.0-netcore3-00140 | 3,653 | 8/11/2019 |
2.2.1 | 108,775 | 9/17/2019 |
2.2.0 | 43,667 | 8/11/2019 |
2.1.2 | 87,494 | 5/22/2019 |
2.1.1 | 2,358 | 5/21/2019 |
2.1.0 | 2,895 | 5/19/2019 |
2.0.7 | 54,145 | 3/18/2019 |
2.0.6 | 11,334 | 2/6/2019 |
2.0.5 | 17,640 | 1/25/2019 |
2.0.4 | 8,730 | 1/3/2019 |
2.0.3 | 7,181 | 12/18/2018 |
2.0.2 | 12,090 | 11/3/2018 |
2.0.1 | 2,691 | 10/24/2018 |
2.0.0 | 11,206 | 9/19/2018 |
1.1.0 | 2,292 | 9/19/2018 |
1.0.4 | 14,054 | 3/10/2018 |
1.0.3 | 2,478 | 2/23/2018 |
1.0.2 | 2,292 | 2/20/2018 |
1.0.1 | 2,335 | 2/19/2018 |
1.0.0 | 3,551 | 2/18/2018 |
v6.0.0
+ Adding support for EF Core 6
+ Handling UseIdentityAlwaysColumn columns
v5.0.0
! Fixing the library versioning. From now one, one version of the library depends on one version of EF Core, for all supported target frameworks
v4.0.1
! Patching some MySql conditional update queries
v4.0.0
+ Adding support for .NET 5 and EF Core 5
! Patched support for constants in the update condition
! Run and RunAsync will not return all rows affected when command was split into multiple batches, not just the last batch's row count
! Patching the extension method to replace/inject custom command runner
! Removed old extension method on IServiceCollection, since it wasn't working anyway