c# - Can I rename a table without breaking the final-release? -


i use 3 tier release system; alpha, beta , final. i'm using ef6 database-first approach update database model every time make change. each release uses same database, beta site using same data final release.

if want rename table (and related entity model) in existing database, how allow existing final release continue working normal (pointing old table name) , beta release point new table name?

create view in datatabase:

create view [oldtablename] select * [newtablename]; 

Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -