Is there a way to execute a string as C# code in ASP.NET 5 with Roslyn?
In my case I want to dynamically convert a string to an linq expression.
For example:
obj.SomeFunc( "x => x.Username".ToLinqExpression() );
Or something like:
Eval("obj.SomeFunc(x => x.Username); ");
Is this possible in ASP.NET 5?