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.
In my case it was missing
using System.Data.Entity;
using System.Linq;
using System.Data.Entity;