FeralExpressionsCore.Generator 5.1.0

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

// Install FeralExpressionsCore.Generator as a Cake Tool
#tool nuget:?package=FeralExpressionsCore.Generator&version=5.1.0

This project supplies compile time support for FeralExpressionsCore.
For every.cs file which contains a partial class with one or more expression bodied method, it creates an equivalent of that
method which has the same logic, but is a static Expression property.
For example,
public static string Test(string arg1) => ""abc"" + arg1;
would produce
public static Expression&lt;Func&lt;string,string&gt;&gt; Test_Expression => (string arg1) => ""abc"" + arg1;

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

  • .NETCoreApp 3.0

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on FeralExpressionsCore.Generator:

Package Downloads
FeralExpressionsCore

FeralExpressionsCore defines the expansion method .Inline() which can be called on either an expression, or an IQueryable. It replaces method calls in the expression with the method body. In order for this to work, the method must (a) be declared in a partial class (b) have an expression body (c) have any references to this explicitly written

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
5.1.0 1,131 8/27/2022
5.0.0-efcore5.preview7-rc1 435 8/4/2020
5.0.0-efcore5.preview7 267 8/4/2020
3.1.0 1,043 8/27/2022
3.1.0-preview2 991 5/28/2021
3.1.0-preview1 1,387 2/14/2020
3.0.2 1,425 2/14/2020
3.0.1-preview2 1,220 10/2/2019
3.0.1-preview 953 10/2/2019
3.0.0-preview 965 7/1/2019
1.8.9 1,383 7/24/2019
1.7.0 1,369 5/30/2019
1.6.2 1,450 5/1/2019
1.6.1 1,458 3/14/2019
1.6.0 1,454 11/24/2018
1.5.1 1,643 11/23/2018
1.5.0 1,475 10/21/2018
1.4.0-alpha 1,353 8/28/2018
1.3.3-alpha 1,447 8/6/2018
1.3.1-alpha 1,523 8/6/2018
1.3.0-alpha 1,522 8/6/2018

- Support for overloading methods
- Removed excess logging from the build panel