We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I am having an issue with Matrixes (Matrices?) in Ember+. I'm hoping someone can help.
I am using emberplussharp successfully when there isn't a matrix in the tree. I am traversing down the tree with this:
string[] splitParameters = parameter.Split('/'); for (int n = 0; n < splitParameters.Length - 1; n++) { thisNode = (INode)thisNode.Children.First(c => c.Identifier == splitParameters[n]); thisNode.ChildrenRetrievalPolicy = ChildrenRetrievalPolicy.DirectOnly; await _consumer.SendAsync(); }
When this hits a Matrix in the tree, it never returns from the await. With ChildrenRetrievePolicy set to All, it works.
Is this expected behaviour? Is there a downside to just using All?
Thanks in advance,
Chris
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
I am having an issue with Matrixes (Matrices?) in Ember+. I'm hoping someone can help.
I am using emberplussharp successfully when there isn't a matrix in the tree. I am traversing down the tree with this:
When this hits a Matrix in the tree, it never returns from the await. With ChildrenRetrievePolicy set to All, it works.
Is this expected behaviour? Is there a downside to just using All?
Thanks in advance,
Chris
The text was updated successfully, but these errors were encountered: