We are analyzing Microsoft Sync Framework for syncing the client and server database. The scenario is like this:

Server DB hold master data for all projects but the client DB only contains data to a specific project. Moreover the schema of client and server database is also different. However the data is easily convertible.

Is there any way to achieve this using Microsoft Sync Framework?

link|improve this question

74% accept rate
feedback

1 Answer

It is convertible as long as:
1. the schema on the client is a subset of the Server
2. There are no extra schema columns on the client side

You can use the DbSyncProvider by attaching a DbSyncAdpater to its SyncAdapters collection. SyncAdapters can take care of column mappings. For data conversion, you may need to use events like ChangesSelected, ApplyingChanges, etc.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.