FeralExpressions 1.1.0-alpha
See the version list below for details.
dotnet add package FeralExpressions --version 1.1.0-alpha
NuGet\Install-Package FeralExpressions -Version 1.1.0-alpha
<PackageReference Include="FeralExpressions" Version="1.1.0-alpha" />
paket add FeralExpressions --version 1.1.0-alpha
#r "nuget: FeralExpressions, 1.1.0-alpha"
// Install FeralExpressions as a Cake Addin #addin nuget:?package=FeralExpressions&version=1.1.0-alpha&prerelease // Install FeralExpressions as a Cake Tool #tool nuget:?package=FeralExpressions&version=1.1.0-alpha&prerelease
FeralExpressions 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
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net45 is compatible. net451 is compatible. net452 is compatible. net46 is compatible. net461 is compatible. net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
- FeralExpressions.Generator (>= 1.1.0-alpha)
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.2.2-alpha | 913 | 8/3/2018 |
1.2.1-alpha | 854 | 8/3/2018 |
1.2.0-alpha | 984 | 2/2/2018 |
1.1.2-alpha | 968 | 2/1/2018 |
1.1.1-alpha | 1,008 | 2/1/2018 |
1.1.0-alpha | 1,005 | 1/30/2018 |
1.0.3 | 1,246 | 1/7/2018 |
1.0.2 | 1,169 | 1/7/2018 |
1.0.1 | 1,103 | 7/27/2017 |
1.0.0 | 1,077 | 7/27/2017 |
0.0.1-alpha | 926 | 7/25/2017 |
- Added functionality to map the type used in OfType to a different type. For example, the call MyInterfaceEntities.OfType<InterfaceSubType>() could convert to MyInterfaceEntities.OfType<ActualSubType>() when mapping between layers