Handling migrations with MongoDb
Just to give a little more context to the question, I have a web application (asp mvc) which basically wraps CRUD operations to a MongoDb instance, it carries out validation and certain business logic before the model is verified and sent over to be stored, retrieved etc. Now one problem we have his is that in the new version the models have changed but the existing data has not, here is an example: (it is c# specific but the question really is language agnostic) public class Person { public Guid Id {get; set;} public string Name {get; set;} public int Age {get;set;} public string BadgeNo {get