I got this exception "Table '[Table_Name]' does not have a primary key. Add a primary key, or specify that a ROWGUIDCOL column should be used to uniquely identify rows in the table." while synchronizing database
using MSF.
I am implementing an application in that multiple users will download remote database and performs insert/update/ delete operations on local database and then synchronize changes(upload and download).
Here ID is not unique on server DB but it is unique and auto incremented on client DB and primary key for both table is composite key(ID,ClientId) now i want to upload all columns from client side but don't want to download
server's id.....can this possible? or any other option is there to solve this problem.