I have a Windows Form application built on a data model and a Windows Mobile application which contains a similar data model. When users enter information in the mobile application I sync it with the data in the main application. This is achieved by essentially having the class defintions used in the mobile application in the main application and then coding the synchronisation between the two different models.
I am now at a point where the mobile application has been enhanced and a new version created so when synchronisation occurs in the main application it could be syncing from mobile v1 or v2 which have different data models.
What is the best way to achieve synchronisation. An example may be that the main application and v2 of the mobile application contain an order date for an order which needs to be synced. If syncing from v1 of the mobile app which does not contain this property it should be ignored.