I\'ve got an application with a working Entity model generated from an existing database. I have to point my application at a new database, with the same schema, except that
You can change the database in the web.config file.
Use data annotations to use the different table and column names.
For example:
[Table("tblAnswer")] class Answer { [Column("zAnswerId")] public int AnswerId { get; set; } }