Reputation: 898
I recently added a database to my ASP.net MVC project using "Create Model from existing database using Code First" and noew I've just added a new column to the database but are struggling with updating my model? How do I do that? I'm familiar with the update using the .emdx-file, but I can't seem to find one.
Thanks!
Upvotes: 1
Views: 98
Reputation: 836
There is no edmx file if you used Code First, to update the db you need to use migrations or handle it manually.
Upvotes: 1
Reputation: 12857
Going from memory....
Upvotes: 0