In a previous post, someone suggested an interesting approach to a problem I'm trying to solve. the solution included adding a property to one of my classes, a class that is generated by the Entity Framework.
Is there any way to exclude this new property from being stored by EF? so I have something like:
public partial class User
{
UserState state; // property I do not want stored in the database
where User
has a bunch of properties defined elsewhere by EF?
thanks - e