[This is preliminary documentation and is subject to change.]

Removes a link between two entity instances in a many to many relationship.

Namespace:  CWR.MSCRM.Mobile.Client.BL
Assembly:  CWR.MSCRM.Mobile.Client.BL (in CWR.MSCRM.Mobile.Client.BL.dll)
Version: 4.0.0.7

Syntax

C#
public virtual void DisassociateEntities(
	ManyToManyMetadata manyToManyMetadata,
	Guid entityId1,
	Guid entityId2,
	ExecutionOptions executionOptions
)
Visual Basic (Declaration)
Public Overridable Sub DisassociateEntities ( _
	manyToManyMetadata As ManyToManyMetadata, _
	entityId1 As Guid, _
	entityId2 As Guid, _
	executionOptions As ExecutionOptions _
)

Parameters

manyToManyMetadata
Type: ManyToManyMetadata
ManyToManyMetadata object defining the relationship.
entityId1
Type: System..::.Guid
EntityId of the first entity in the relationship.
entityId2
Type: System..::.Guid
EntityId of the second entity in the relationship.
executionOptions
Type: CWR.MSCRM.Mobile.Client.Helpers..::.ExecutionOptions
ExecutionOptions object containing the options on how to execute this method.

See Also