Retrieve linked record fields using a single query in C#

Image you have an entity record and you would like to retrieve properties of some related entities. You can accomplish this in C# by using the LinkedEntities property of a QueryExpression. Let's take the following example, we have a 'zen_career' record which is linked to a contact record which is in turn linked to an owner record. We would like to retrieve … Continue reading Retrieve linked record fields using a single query in C#