sync relation #229
sync relation
#229
-
is it possible to model a relationship from two entity Parent-Childs in a way that when i sync the Parent it dowload and store on the client also his childs? i can model the relation on EF and SQL but is it supported by the sync framework? |
Beta Was this translation helpful? Give feedback.
Answered by
adrianhall
Jan 29, 2025
Replies: 1 comment
-
No - every table is independent in a datasync operation. Your sync might fail in the middle, leaving your entity tables in a bad state. We also don't do transaction queuing, so your push won't work either. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
guidoDimasi
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No - every table is independent in a datasync operation. Your sync might fail in the middle, leaving your entity tables in a bad state. We also don't do transaction queuing, so your push won't work either.