I made project in mvc2.
I made database in Sql server.
I am fetching data through entity framework. Then I made entities, and some controller classes.
Now when i add one more table in database, and deploy to server then the entities are showing of the old tables
so please how i also update entities without reconstruct entities
Thanks in advance.
It sounds like you are talking about data migration after a model change. This is not currently support. You can how ever create a custom database initializer and override the seed methods to manually migrate data.
Or simpler do not initialize the database and make the changes to the data model through SSMS