Replies: 1 comment 11 replies
-
Hi, what have you tried so far? You should be able to use something along the lines of this: ParentView v = evm.getReference(ParentView.class, parentId);
v.setChildren( newChildren );
evm.saveFull(entityManager, v); |
Beta Was this translation helpful? Give feedback.
11 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.
-
I have the following model:
Is it possible to fetch
ParentView
and replace all its children without fetching them?I have tried it with
convert
, but it doesn't work with collection attributes, because they are null after conversion.Beta Was this translation helpful? Give feedback.
All reactions