Question

I am wondering some point on deploying an Asp.NET MVC5 application to my own server.

  1. What if it happens, if i add more attributes in one of my model class or add more model class. What should i do for not losing data.

  2. Is there any other options shoul i need to perform other than asp.net mvc4 since i could not find any tutorial about deployin asp.net mvc5 with Identity.

  3. What is the best efficient way to change my application view, controller and model on run-time. Can i working on my local PC while using the remote code file and database ?

Regards.

No correct solution

OTHER TIPS

I have a hard time understanding your requirements but for the database part, I would recommend "entity framework migrations". It's made handling model changes locally and remotely.

http://msdn.microsoft.com/en-us/data/jj554735.aspx

I have worked with entity framework migrations a lot but sometimes if you make big changes, such as Foreign keys or enums, the migrations give a problem. I then started to use a tool from RedGate.com called "Sql Compare." Works better than Entity migrations - now I don't worry about data changes. Usually this will not lose data, but if it is going to lose data, it will warn you.

Best solution to losing data -make backups.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top