T1.EfCore 1.0.3

dotnet add package T1.EfCore --version 1.0.3                
NuGet\Install-Package T1.EfCore -Version 1.0.3                
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="T1.EfCore" Version="1.0.3" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add T1.EfCore --version 1.0.3                
#r "nuget: T1.EfCore, 1.0.3"                
#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.
// Install T1.EfCore as a Cake Addin
#addin nuget:?package=T1.EfCore&version=1.0.3

// Install T1.EfCore as a Cake Tool
#tool nuget:?package=T1.EfCore&version=1.0.3                

The purpose of this library is to extend or support the functionality of Entity Framework.

Here are examples for Upsert a single record:

var entity = new Entity
{
    Id = 1,
    Name = "Joho"
};

_db.Upsert(entity)
    .On(x => x.Id)
    .Execute();

Here are examples for Upsert multiple records:

var entityArray = [
    new Entity
    {
        Id = 1,
        Name = "John"
    },
    new Entity
    {
        Id = 2,
        Name = "Jack"
    },
];

_db.Upsert(entityArray)
    .On(x => x.Id)
    .Execute();

Here are examples for Upsert a single record with multiple keys:

var entityArray = [
    new Entity
    {
        Id = 1,
        Name = "John"
    },
];

_db.Upsert(entityArray)
    .On(x => new {x.Id, x.Name})
    .Execute();

Here are examples for Upsert large records:

_db.UpsertRange(entityArray)
    .On(x => x.Id)
    .Execute();
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. 
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.3 80 10/6/2024
1.0.2 363 9/24/2024
1.0.1 88 9/24/2024

add UpsertRange and  return effected Rows Count