can microsoft sync framework sync database views ?

or in your SelectIncrementalInsertsCommand can you select and join to multiple tables kinda doing something like a view?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Sync Framework does not support Views. You can changes the SelectIncrementalInsertsCommand to return data, however you need to make sure it gives back exact schema expected, no extra columns no mis matched data types. There is another way if your scenario really demands extra info. You can manipualate the data set retrieved in the ChangesSelected event of Provider. However you need to be careful about performance hit here.

link|improve this answer
feedback

Views are created dynamically on execution s you cant sync them. BUT you can:

  • aggregate the view's data into a table and then sync the table.
  • Run the view on the synced tables on the target DB.
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.