function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Nikhil_JNikhil_J 

Manipulation of QueryResult while using query with Aliasname and "__r" notaion in 8.0 API

Hi
I am not able to manipulate QueryResult with API 8.0 with c # ,I m using a Query having __r natation Example"Select Contact__r.Name,Conference__r.Name from Contact_Conference_Relation__C"
 
I am unable to manupulate qr for this because sforce is returning both columns in one single column of qr
 
Its very urgent please reply if anyone know
 
Thanks
 
 
 
DevAngelDevAngel
What version of the wsdl are you using, partner or enterprise?

When you are using soql-r, the Contact__r will be an queryResult as willl the Conference__r.  You will need to traverse this embedded query result as you would the original, or outer query result.
Nikhil_JNikhil_J
Hi
I am using 8.0 partners WSDL, How can i manipulate result
because result of two colums is returned in 1 Single column.For example for name ,Address its giving me "SAMUAL26AvenueStreet"
So how can i manipluate which part is of col1 and which is of col2
 
Thanks for your reply