Upgrade to EF 6.1.1 makes effect of [NotMapped] disappear
问题 I have upgraded from EF 4.3.1 to 6.1.1 and now it seems like the annotation [NotMapped] is useless. Yes, i have change to correct assembly and everything looks fine on compilation. Everywhere where [NotMapped] is present the property is handled as a domain property and i get an error that EF can't find the matching column in database. Example: private bool _authenticated = true; [NotMapped] public bool Authenticated { get { return _authenticated; } set { _authenticated = value; } } Yes, it