Avatar of ITsolutionWizard
ITsolutionWizard
Flag for United States of America asked on

mvc entity framework

i just take over a mvc with entity framework project and the developer is gone.
Now I added a column in the database table, and how can i refresh the entity framework so I can continue to code with linq...?

I am not expert with any projects that using entity framework. hope you can help out.

Thanks
.NET MVCDatabases* Entity Framework Core

Avatar of undefined
Last Comment
Jose Gabriel Ortega Castro

8/22/2022 - Mon
ASKER CERTIFIED SOLUTION
Snarf0001

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
Shaun Vermaak

That is database-first. Just make a backup of your models in case the previous developer added code into the autogenerated classes
update.png
Jose Gabriel Ortega Castro

Go to the Powershell console.
Open VS and navigate to Tools/Package Manager Console
Then run Enable-Migrations (if you got an error, your developer already did this)

if the enable-migrations cmdlet works or fail you should create a new migration (from old DB to new)
add-migration UpdatedCoumnXXXX

you should review the code proposed and if you accept it just run

Update-database

and that's it.

This is if you added the column programmatically if you did it on the DB follow the previous suggestion from  @Shaun Vermaak

Documentation in here: https://docs.microsoft.com/en-us/aspnet/mvc/overview/getting-started/getting-started-with-ef-using-mvc/migrations-and-deployment-with-the-entity-framework-in-an-asp-net-mvc-application
Experts Exchange is like having an extremely knowledgeable team sitting and waiting for your call. Couldn't do my job half as well as I do without it!
James Murphy