In Entity framework, I have to add more properties to the auto generated properties in the Entity Framework. Is there is any way we can stop the EF to stop over writing these properties, when we regenerate the Entities.
In Entity Framework I am trying to override the auto generated entity by using partial class. But I am not able to get the scope of the new added properties in the base class, both the partial class are in same name space and has access Public.
Thanks Much.