You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Insert statements for entities with nested collections already appear to be ordered as desired. See this passing test I added on a branch to verify that this is the case.
For an Aggregate Root
A
with a collections ofB
entities which in turn has a collection ofC
entities, insert operations are are structured like this:A
B
C
of 1.B
C
of 1.B
...
B
C
of 2.B
C
of 2.B
...
This is not well suited for batch operations.
For those we should execute the statements in the following order:
A
B
B
...
C
of 1.B
C
of 1.B
C
of 2.B
C
of 2.B
...
See also #537
The text was updated successfully, but these errors were encountered: