I've defined a number of "Fields on Related Fields" of an Entity. Those defined fields do not appear in the "Fields" property of the Entity object. Is there another way to access those programmatically.
ContactEntity ce = new ContactEntity(222);
string desiredField = "RelatedField";
string myField = ce.Fields[desiredField];
Thanks,