I have created a web site using mvc 3 and Ef code first , now after publishing the site and it's DB I have found out that I need to add a new columns to one of my DB table, (the DB already has a lot of data in it ) should I add the columns direct to the DB or should I add to the class? (just a simple string with get and set) And how can I do it without losing my data in the DB ? thanks
feedback
|
|
Adding the columns to the class should be enough. Evidence you can find here.
I suggest you to add the columns direct to the DB and to the class, and test it on the local machine. | |||
|
feedback
|