.net - Two-way database synchronization -
how can two-way synchronization? in desktop application, have implemented synchronization, can't two-way.
e.g., have 2 fields (name, phone number) on form. scheme local database, have updated name, , scheme server database, have updated phone number.
now, if doing synchronization, want both changes in both databases, getting lastly alter done.
sync framework tracks changes @ row level, not @ column level. doesn't know column change, row has changed.
you're scenario results in update - update conflict. when resolve conflict, specify winning row. sync fx not merge changes on different columns. e.g., not merge name , phone number both change.
its either source or destination row wins.
.net microsoft-sync-framework
No comments:
Post a Comment