Sync all logs to the server from AttendanceLog Tables in many clients with integer Id (primary key) #549
Unanswered
Abdelrahmandev1984
asked this question in
Q&A
Replies: 1 comment
-
It's working with GUID as primary key, but you have to remove the identity increment on your INT column. Or, you can manage by yourself the identity values. Take a look here : #442 (comment) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Dear,
Thanks a lot for this amazing tool.
I have AttendanceLog table which saving the attendance log for the employees in many sites (client DBs), The primary key of this table is integer identity, because one log in a client db may take Id = 1 and in other client db may take Id = 1 again and when sync that to the server the result will be 1 attendance log with the Id 1 which is not valid, Is there is a way to make this library work on a GUID column with leaving the integer Id as the primary key? I think this is also will be useful in the case we need to merge tables based on a condition not based on the primary key.
Beta Was this translation helpful? Give feedback.
All reactions