Hi We are using Sync framework for syncing between SQL CE and SQL Server on server side.
For some newly entered data in the server side, sync throws an error
Range was provided out of expected order. Ranges should be provided in increasing order.
Any pointers on how to resolve this error
I found the answer to this question. The Sync Framework expects the Current version values to be provided to it in an increasing order. The stored procedure in our application was returning the objects ordered by GUID and not current version.
A one line fix in the stored procedure fixed this errro