double nested arrays #476
Unanswered
luckydonald
asked this question in
Q&A
Replies: 1 comment
-
Hmm I don't see how we can support this. Every layer needs a data object so you could have Item and ParentItem? Other solution could be to implement a custom cast. |
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.
Uh oh!
There was an error while loading. Please reload this page.
-
I have to support the following json array:
For example it would look like that in Json:
I made a class
Item
for that{"name": "…"}
part, and a classOuter
for the overall object.Now I need to define
Outer
and tell it that I want to haveItem[][]
as the$items
variable:I tried to use
DataCollectionOf
twice, but that doesn't seem to work:This results in the following error:
Beta Was this translation helpful? Give feedback.
All reactions