I\'m trying to call a function in a dynamic linq select statement, but im getting error:
No property or field \'A\' exists in type \'Tuple2\'
I may be confused but your syntax whereby you are using a string in your Selects doesn't compile for me. The following syntax works:
Select
var q = b.AsQueryable().Select(it => A.Test(it.Item1));