Hi,
I am working on $metadata of Dynamics CRMand parsing EntityType for the specific entity.
I would like to know:
- Why attribute ContainsTarget has "false" value for all NavigationProperty. (considering false value as attribute is missing) ?
Attaching the snippet for account entity where NavigationProperty doesn't have ContainsTarget attribute. This is the case with all EntityType.
<EntityType Name="account" BaseType="mscrm.crmbaseentity">
<Property></property>
.
.
<Property></property>
<NavigationProperty Name="primarycontactid" Type="mscrm.contact" Nullable="false" Partner="account_primary_contact"> </NavigationProperty>
<NavigationProperty Name="Account_SocialActivities" Type="Collection(mscrm.socialactivity)" Partner="regardingobjectid_account_socialactivity"> </NavigationProperty>
</EntityType>
Thanks