I'm starting some independent projects using ASP.NET MVC 5 with Entity Framework, and more learning from technology. And at the moment I had a great doubt.
I used the generated code through a connection to the database, creating an ADO.NET Entity Data Model (edmx). And it creates the object classes of the whole database. However, I needed to make some changes to the database, such as adding more tables, removing some columns and Foreing Key, and adding others.
What now? How does my code look, outdated? Having already created Controller, and views. Is there any way to do update, or do I have to make the changes all at hand?