Inside a sync scope what order do tables sync? #1287
Unanswered
jantoineqci
asked this question in
Q&A
Replies: 1 comment
-
The order is declared when you are creating your Setup For instance, as example, your setup for AdventureWorks should be something like: var setup = new SyncSetutp("Address", "Customer", "CustomerAddress"); Because we need the
If you still have some foreign keys constraints issues, you can try the options var options = new SyncOptions { DisableConstraintsOnApplyChanges = true }; |
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
-
I have a sync scope with 10 tables. I list Table A before Table B and even alphabetically Table A becomes before Table B. Table B has FK to Table A. When I sync I get an error saying The FK value of Table B doesn't exists in Table A. What is the order of tables processed in a sync? or can I dictate the order in which the tables are processed?
Beta Was this translation helpful? Give feedback.
All reactions