I have a base class that has a bool property which looks like this:
public abstract class MyBaseClass { public bool InProgress { get; protected set; } }
I got this error when I was missing
using System.Data.Entity;