MAD.Extensions.EFCore
6.0.2.2
See the version list below for details.
dotnet add package MAD.Extensions.EFCore --version 6.0.2.2
NuGet\Install-Package MAD.Extensions.EFCore -Version 6.0.2.2
<PackageReference Include="MAD.Extensions.EFCore" Version="6.0.2.2" />
paket add MAD.Extensions.EFCore --version 6.0.2.2
#r "nuget: MAD.Extensions.EFCore, 6.0.2.2"
// Install MAD.Extensions.EFCore as a Cake Addin #addin nuget:?package=MAD.Extensions.EFCore&version=6.0.2.2 // Install MAD.Extensions.EFCore as a Cake Tool #tool nuget:?package=MAD.Extensions.EFCore&version=6.0.2.2
MAD.Extensions.EFCore: A library for .NET Core & .NET that provides extended functionality for Entity Framework Core
MAD.Extensions.EFCore is inspired by borisdj's EFCore.BulkExtensions library, and currently provides an extension to "Upsert" (Insert or Update) an object with a single method call using Entity Framework Core.
Supported Platforms
MAD.Extensions.EFCore currently supports the following platforms:
- .NET Standard 2.1
- .NET Core 3.1
- .NET 5
- .NET 6
Installation
- Nuget Package Manager:
MAD.Extensions.EFCore
- Package Manager Console:
Install-Package MAD.Extensions.EFCore
- .NET CLI:
dotnet add package MAD.Extensions.EFCore
Upserting Objects
To upsert an object using your DbContext, add the following using statement to your class to access the extension method:
using MAD.Extensions.EFCore;
Then call the Upsert method and pass through your entity as a parameter:
dbContext.Upsert(entity);
dbContext.SaveChanges();
Shadow Properties
Previous versions of MAD.Extensions.EFCore required shadow property values to be set manually using the transformations action on the upsert method:
dbContext.Upsert(entity, childEntity =>
{
switch (childEntity)
{
case ChildEntity:
dbContext.Entry(childEntity).Property("ParentId").CurrentValue = entity.Id;
break;
}
});
dbContext.SaveChanges();
As of v3.0.1 and v6.0.1, MAD.Extensions.EFCore will automatically populate these shadow properties for any child entities underneath the entity passed to the upsert method.
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.1)
- SqlKata.Execution (>= 2.3.7)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.