Learn Entity Framework Core: https://www.learnentityframeworkcore.com/
Entity Framework Core Tutorial: https://entityframeworkcore.com/
Entity Framework 6 Tutorial: https://entityframework.net/
Info
Version: | 5.3.2 |
Author(s): | ruben morton |
Last Update: | Friday, September 13, 2024 |
.NET Fiddle: | Create the first Fiddle |
Project Url: | https://github.com/ze1tgeist/FeralExpressions |
NuGet Url: | https://www.nuget.org/packages/FeralExpressionsCore.Generator |
Install
Install-Package FeralExpressionsCore.Generator
dotnet add package FeralExpressionsCore.Generator
paket add FeralExpressionsCore.Generator
FeralExpressionsCore.Generator Download (Unzip the "nupkg" after downloading)
Dependencies
Tags
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<Func<string,string>> Test_Expression => (string arg1) => ""abc"" + arg1;.