SyntaxFix
Write A Post
Hire A Developer
Questions
I had this issue , When calling Generic.List like:
mylist.Select( selectFunc )
Where selectFunc is defined as Expression<Func<T, List<string>>>. Simply changed "mylist" to be a IQuerable instead of List then it allowed me to use .Select.
Expression<Func<T, List<string>>>
IQuerable
List
.Select