Entity Framework – Cannot convert lambda expression to type ‘string’ because it is not a delegate type

For those interested in the outcome:
I was missing a simple Using statement at the head of my code.

using System.Linq;

This fixed it right up.

Leave a Comment