EntityFrameworkCore.MemoryJoin.Ef6 0.7.6

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 Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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
0.7.6 214,166 4/2/2021
0.7.5 3,734 11/24/2020
0.7.0 213,637 4/18/2020
0.5.9 1,251 10/12/2019

Guid and bool inject via body is implemened