You need to sign in to do that
Don't have an account?

Comsume QueryResult and Parse in .NET
Does anyone have any links or tips on consuming the QueryResult object in .NET and then how to parse it? It's easy to use for straight queries, but when dealing with Parent relationships and/or sub-queries that may or may not have data, it's not very straight-forward. For example, I figured out how to tell if it is a Parent or Sub-query using Has Attributes, and Attribute(0), but then when I access it via the ChildNodes, if it doesn't have data, I can't tell which columns I'm dealing with so that I can marry them up to the actual expected column (subqueries and parent relationships always return the ID column). Thanx!