Restore Remote Navigation Property in Entity Framework

I removed the navigation property in my Entity Framework constructor, assuming it was not needed. Now it is needed and I would like to restore it. How can I do this without dropping the model and importing the table from the database?

+3


source to share


1 answer


I think you can just update the model (the same way you add it) so there is no need to delete it first. And if the navigation property is not added, you can add it manually.



+2


source







All Articles