Learn Entity Framework Core: https://www.learnentityframeworkcore.com/
                        Entity Framework Core Tutorial: https://entityframeworkcore.com/
                        Entity Framework 6 Tutorial: https://entityframework.net/
                    Info
| Version: | 1.2.0-alpha | 
| Author(s): | ruben morton | 
| Last Update: | Friday, February 2, 2018 | 
| .NET Fiddle: | Create the first Fiddle | 
| Project Url: | https://github.com/ze1tgeist/FeralExpressions | 
| NuGet Url: | https://www.nuget.org/packages/FeralExpressions.Generator | 
Install
Install-Package FeralExpressions.Generator
                        dotnet add package FeralExpressions.Generator
                        paket add FeralExpressions.Generator
                        
                                FeralExpressions.Generator Download (Unzip the "nupkg" after downloading)
                            
                        Dependencies
                                1 package depend on this package.
                        
                    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;.