I have a query like the code below to retrieve related records using oData using c# in a silverlight applicaiton
DataServiceQuery
.AccountSet
.AddQueryOption("$expand","new_account_new_contact, new_account_new_wharehouse, new_account_new_region");
I have three relationships included here in the expand string.
the code sometimes does not return the related records sometimes. but if i refresh the page (sometimes once, sometimes several times), it does return all the related records.
Reckon it might be a bug?
Regards,
Jaimie