I'm trying to build a sharepoint BCS connector that grabs data from CRM4. I have it fetching normal attributes from the "contact" entitiy, but I'm not seeing how to retrieve things like related contacts, custom entities or meetings/appointments, etc.
I have read through these:
how to get related entities in dynamics CRM 2011
Retrieve a list of entites from CRM 2011, each with all of their related entities
Microsoft CRM, how do I get all the members of a list using CrmService?
But I can't seem to see any reference to what I am doing. I'm using the normal CRMService web service. I am using the normal request:
var contacts = service.RetrieveMultiple(query);
That only gets me access to the basic attributes, unless I am missing something. If a contact has a few entities related to it (other contacts/meetings), can I grab that from the same query? Or does this require another hit to another entity?