|
Hi,
I'll insert a row in a dataset, then to merging this with database, after this, i sync my sqlservermobile database with the server, all is ok, but if I'll fill the dataset (after syncing) this row is duplicated with different guid (which is the key)
code:
datatable.Rows.Add(row) DataSet changes = datatable.GetChanges() datatable.Merge(changes) datatable.AcceptChanges()
Syncing...
tableadapter.fill(datatable) --> after this, the inserted row is duplicated but with a different key (guid)
Any ideas?
THANK YOU! |