Use the early bound entity classes to add or update associations between related records

 

Applies To: Dynamics 365 (online), Dynamics 365 (on-premises), Dynamics CRM 2016, Dynamics CRM Online

In Microsoft Dynamics 365 (online & on-premises), you can create an association by using early binding in several ways. To create a one-to-many relationship, you can use the AddLink method in the OrganizationServiceContext class. To create a many-to-many relationship, you can use the Associate method in the IOrganizationService class to create an association. You can also create the association by updating the foreign key of the target entity to match the primary key of the new source entity.

To remove an association, you can use the DeleteLink method in the OrganizationServiceContext class or the Disassociate method. You can also set the foreign key to null.

For a complete sample showing how to add and remove associations, see Sample: Associate records (early bound).

You can use the AddLink method to create associations. You must call the SaveChanges method before the server is updated with the new link information.

The following code example shows how to create an association between a contact and an account.

Relationship relationship = new Relationship("account_primary_contact");
context.AddLink(contact, relationship, account);
context.SaveChanges();

Use the Associate method

You use the Associate method to create both one-to-many and many-to-many associations. The following code example shows how to create a one-to-many association between an account and a contact.

Relationship relationship2 = new Relationship("account_primary_contact");
EntityReferenceCollection relatedEntities = new EntityReferenceCollection();
relatedEntities.Add(new EntityReference(Account.EntityLogicalName, firstaccount.Id));
_serviceProxy.Associate(Contact.EntityLogicalName, firstcontact.Id, relationship2, relatedEntities);

See Also

Use the early bound entity classes in code
Mix early and late bound entities
Use the early-bound entity classes for create, update, and delete

Microsoft Dynamics 365

© 2016 Microsoft. All rights reserved. Copyright