I have an MVC 5 application that uses the Entity Framework 6 Database First approach.
So far, it works well, but I have encountered unwanted behavior.
If I select "Update Model From Database", select the "Add" tab, and then select the Tables or Views that I would like to add and click "Finish", add tables and / or views that I did not specify.
However, the undesirable behavior is that although I did not select the Refresh tab, it seems that each individual model is automatically updated.
This means that all my user attributes on my models are deleted.
Is it possible to specify only the addition of the specified tables or views without updating all models, or if it updates all models in order to preserve the attributes indicated by me?
Visual Studio Information: Microsoft Visual Studio Professional 2013 Version 12.0.40629.00 Update 5 Microsoft.NET Framework Version 4.5.51650
Installed Version: Professional
Is this a mistake or an intended use?
thanks
Nill
source
share