VOOZH about

URL: https://www.nuget.org/packages/DelegateDecompiler.EntityFrameworkCore5/

⇱ NuGet Gallery | DelegateDecompiler.EntityFrameworkCore5 0.35.3




DelegateDecompiler.EntityFrameworkCore5 0.35.3

dotnet add package DelegateDecompiler.EntityFrameworkCore5 --version 0.35.3
 
 
NuGet\Install-Package DelegateDecompiler.EntityFrameworkCore5 -Version 0.35.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="DelegateDecompiler.EntityFrameworkCore5" Version="0.35.3" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DelegateDecompiler.EntityFrameworkCore5" Version="0.35.3" />
 
Directory.Packages.props
<PackageReference Include="DelegateDecompiler.EntityFrameworkCore5" />
 
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add DelegateDecompiler.EntityFrameworkCore5 --version 0.35.3
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: DelegateDecompiler.EntityFrameworkCore5, 0.35.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.
#:package DelegateDecompiler.EntityFrameworkCore5@0.35.3
 
 
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=DelegateDecompiler.EntityFrameworkCore5&version=0.35.3
 
Install as a Cake Addin
#tool nuget:?package=DelegateDecompiler.EntityFrameworkCore5&version=0.35.3
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

DelegateDecompiler

👁 https://ci.appveyor.com/project/hazzik/delegatedecompiler/branch/main
👁 https://nuget.org/packages/DelegateDecompiler

A library that is able to decompile a delegate or a method body to their lambda representation

Sponsorship

If you like the library please consider supporting my work.

Examples

Using computed properties in linq.

Assume we have a class with a computed property

class Employee
{
 [Computed]
 public string FullName => FirstName + " " + LastName;
 public string LastName { get; set; }
 public string FirstName { get; set; }
}

And you are going to query employees by their full names

var employees = (from employee in db.Employees
 where employee.FullName == "Test User"
 select employee).Decompile().ToList();

When you call .Decompile method it decompiles your computed properties to their underlying representation and the query will become simmilar to the following query

var employees = (from employee in db.Employees
 where (employee.FirstName + " " + employee.LastName) == "Test User"
 select employee).ToList();

If your class doesn't have a [Computed] attribute, you can use the .Computed() extension method..

var employees = (from employee in db.Employees
 where employee.FullName.Computed() == "Test User"
 select employee).ToList();

Also, you can call methods that return a single item (Any, Count, First, Single, etc) as well as other methods in identical way like this:

bool exists = db.Employees.Decompile().Any(employee => employee.FullName == "Test User");

Again, the FullName property will be decompiled:

bool exists = db.Employees.Any(employee => (employee.FirstName + " " + employee.LastName) == "Test User");

Limitations

Not every compiled code can be represented as a lambda expression. Some cases are explicitly not supported, other can break and produce unexpected results.

Some of the known cases listed below

Loops

Loops often cannot be represented as an expression tree.

So, the following imperative code would probably throw a StackOverflowException:

var total = 0;
foreach (var item in this.Items) { total += item.TotalPrice; }
return total;

Instead, write it as a declarative Linq expression, which would be supported.

return this.Items.Sum(i => i.TotalPrice);

Recursion and self-referencing

Recursion and self-referencing of computed properties cannot be represented as an Expression tree, and would probably throw StackOverflowException similarly to loops.

Pattern matching with is ... or ...

is ... or ... pattern matching cannot always be decompiled due to compiler optimizations. The compiler may optimize patterns to use comparison operators, making it impossible to distinguish between genuine comparisons and optimized patterns.

For example:

enum TestEnum { Foo, Bar, Baz }

// This pattern matching:
x is TestEnum.Foo or TestEnum.Bar

// Might compile to:
(uint)x <= 1

Using with EntityFramework and other ORMs

If you are using ORM specific features, like EF's Include, AsNoTracking or NH's Fetch then Decompile method should be called after all ORM specific methods, otherwise it may not work. Ideally use Decompile extension method just before materialization methods such as ToList, ToArray, First, FirstOrDefault, Count, Any, and etc.

Async Support with EntityFramework 6

The DelegateDecompiler.EntityFramework package provides DecompileAsync extension method which adds support for EF's Async operations.

Async Support with EntityFramework Core 5.0 and later

The DelegateDecompiler.EntityFrameworkCore5 package provides DecompileAsync extension method which adds support for EF's Async operations.

Automatic decompilation

You can configure DelegateDecompiler to automatically decompile all EF Core queries:

public class YourDbContext : DbContext
{
 protected override void OnConfiguring(DbContextOptionsBuilder options) {
 options.AddDelegateDecompiler();
 // Other configuration
 }
}

With this approach you would not need to call Decompile or DecompileAsync methods on queries.

Installation

Available on NuGet

License

MIT license - http://opensource.org/licenses/mit

Product Versions Compatible and additional computed target framework versions.
.NET net5.0 net5.0 was computed.  net5.0-windows net5.0-windows was computed.  net6.0 net6.0 was computed.  net6.0-android net6.0-android was computed.  net6.0-ios net6.0-ios was computed.  net6.0-maccatalyst net6.0-maccatalyst was computed.  net6.0-macos net6.0-macos was computed.  net6.0-tvos net6.0-tvos was computed.  net6.0-windows net6.0-windows was computed.  net7.0 net7.0 was computed.  net7.0-android net7.0-android was computed.  net7.0-ios net7.0-ios was computed.  net7.0-maccatalyst net7.0-maccatalyst was computed.  net7.0-macos net7.0-macos was computed.  net7.0-tvos net7.0-tvos was computed.  net7.0-windows net7.0-windows was computed.  net8.0 net8.0 was computed.  net8.0-android net8.0-android was computed.  net8.0-browser net8.0-browser was computed.  net8.0-ios net8.0-ios was computed.  net8.0-maccatalyst net8.0-maccatalyst was computed.  net8.0-macos net8.0-macos was computed.  net8.0-tvos net8.0-tvos was computed.  net8.0-windows net8.0-windows was computed.  net9.0 net9.0 was computed.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 was computed.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows net10.0-windows was computed. 
.NET Core netcoreapp3.0 netcoreapp3.0 was computed.  netcoreapp3.1 netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 netstandard2.1 is compatible. 
MonoAndroid monoandroid monoandroid was computed. 
MonoMac monomac monomac was computed. 
MonoTouch monotouch monotouch was computed. 
Tizen tizen60 tizen60 was computed. 
Xamarin.iOS xamarinios xamarinios was computed. 
Xamarin.Mac xamarinmac xamarinmac was computed. 
Xamarin.TVOS xamarintvos xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (6)

Showing the top 5 NuGet packages that depend on DelegateDecompiler.EntityFrameworkCore5:

Package Downloads
OneBeyond.Studio.DataAccess.EFCore

Package Description

makeITeasy.AppFramework.Models

1.1.13 : Dependencies update 1.1.12 : Dependencies update 1.1.11 : Rename ISpecification field StringCriteria to expression 1.1.10: Dependencies update. 1.1.9 : Dependencies update. 1.1.8 : Dependencies update. Add StringSelector to ISpecification 1.1.7 : Embed DelegateCompiler 1.1.6 : Add ReadUncommitedQuery 1.1.5 : Add ICurrentDateProvider model

makeITeasy.AppFramework.Infrastructure

Infrastructure module for makeITeasy.Appframework

TorqIT.Tools.FilterParams

Infinite, generic and type safe filter parameters for APIs

TorqIT.Tools.PagedResults

Generic and type safe paging for APIs

GitHub repositories (2)

Showing the top 2 popular GitHub repositories that depend on DelegateDecompiler.EntityFrameworkCore5:

Repository Stars
borisdj/EFCore.BulkExtensions
Entity Framework EF Core efcore Bulk Batch Extensions with BulkCopy in .Net for Insert Update Delete Read (CRUD), Truncate and SaveChanges operations on SQL Server, PostgreSQL, MySQL, SQLite, Oracle
jbogard/ContosoUniversityDotNetCore-Pages
With Razor Pages
Version Downloads Last Updated
0.35.3 65,846 11/19/2025
0.35.0 14,348 10/18/2025
0.34.2 95,402 3/4/2025
0.34.1 43,033 12/12/2024
0.34.0 233,349 5/27/2024
0.33.1 7,207 5/3/2024
0.33.0 5,226 5/3/2024
0.32.0 1,096,057 10/20/2022
0.31.0 6,315 10/17/2022
0.30.0 399,230 12/14/2021
0.29.1 149,231 2/4/2021
0.29.0 5,635 2/4/2021
0.28.3 39,104 1/9/2021
0.28.2 8,938 11/12/2020
0.28.1 5,923 11/12/2020