i want to simply get an lambda expression from given column names for example
input = "Field1,Field2"
output of type lambda expression for select statement:
x=> new { Field1 = x.Field1, Field2 = x.Field2 }
I do not want to use any class e.g.
x=> new ClassName { Field1= x.Field1, Field2= x.Field2}
without Roslyn scripting