EntityFrameworkCore.MemoryJoin.Ef6 0.7.6

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

// Install EntityFrameworkCore.MemoryJoin.Ef6 as a Cake Tool
#tool nuget:?package=EntityFrameworkCore.MemoryJoin.Ef6&version=0.7.6

EntityFrameworkCore.MemoryJoin

Extension for EntityFramework for joins to in-memory data. Both Entity Framework 6 and Entity Framework Core are supported! Used SQL standard syntax.

Tested with: MSSQL, PostgreSQL, and SQLite. (others should also work as standard EF API and SQL standard syntax are used)

Usage

  1. Internally MemoryJoin uses intermediate class for making queries. So you can either use your own or basically use built-in one. Like this:

    protected DbSet<EntityFramework.MemoryJoin.QueryModelClass> QueryData { get; set; }

    Or like this for EF Core

    protected DbSet<EntityFrameworkCore.MemoryJoin.QueryModelClass> QueryData { get; set; }

Please note this DbSet is protected, so it can't be used by anybody, only MemoryJoin will access it. Another note: table for QueryModelClass is NOT required. It is used for internal mapping only. So if you use migrations - basically use -IgnoreChanges flag.

  1. After DbSet is defined you can write as follows:

    using EntityFramework.MemoryJoin

    For EF Core:

    using EntityFrameworkCore.MemoryJoin

Then

// get context
var context = CreateContext();

// define in-memory list
var queryData = new [] {
    new { .StreetName = "Foo", .HouseNumber = 33 },
    new { .StreetName = "Baz", .HouseNumber = 99 },
    // can specify other objects here
};

// get queryable representation, using thing like AsQueryable() will not work
var queryable = context.FromLocalList(queryData);

// Write as complex query as you want now. Data will be sent to server for performing query. I.e.
var efQuery = from addr in context.Addresses
              join el in queryList on
                       new { addr.StreetName, addr.HouseNumber } equals
                       new { el.StreetName, el.HouseNumber }
              select new
                     {
                       addr.AddressId,
                       addr.CreatedAt,
                       addr.StreetName,
                       addr.HouseNumber,
                       el.Extra,
                       el.Integer,
                       el.Float
                     };
   
   // Query will be executed on DB server
   var = efQuery.ToList();
Product Versions
.NET net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows
.NET Core netcoreapp3.0 netcoreapp3.1
.NET Standard netstandard2.1
.NET Framework net45 net451 net452 net46 net461 net462 net463 net47 net471 net472 net48 net481
MonoAndroid monoandroid
MonoMac monomac
MonoTouch monotouch
Tizen tizen60
Xamarin.iOS xamarinios
Xamarin.Mac xamarinmac
Xamarin.TVOS xamarintvos
Xamarin.WatchOS xamarinwatchos
Compatible target framework(s)
Additional computed target framework(s)
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
0.7.6 79,352 4/2/2021
0.7.5 1,734 11/24/2020
0.7.0 207,842 4/18/2020
0.5.9 1,087 10/12/2019

Guid and bool inject via body is implemened