CrmEntity.SetRelatedEntity<TEntity> Method (String, String, TEntity)
Applies To: Dynamics CRM 2013
Sets the related entity for a specific relationship.
Namespace: Microsoft.Xrm.Client
Assembly: Microsoft.Xrm.Client (in Microsoft.Xrm.Client.dll)
Syntax
protected virtual void SetRelatedEntity<TEntity>(
string propertyName,
string relationshipSchemaName,
TEntity entity
)
where TEntity : Entity
protected:
generic<typename TEntity>
where TEntity : Entity
virtual void SetRelatedEntity(
String^ propertyName,
String^ relationshipSchemaName,
TEntity entity
)
abstract SetRelatedEntity<'TEntity when 'TEntity : Entity> :
propertyName:string *
relationshipSchemaName:string *
entity:'TEntity -> unit
override SetRelatedEntity<'TEntity when 'TEntity : Entity> :
propertyName:string *
relationshipSchemaName:string *
entity:'TEntity -> unit
Protected Overridable Sub SetRelatedEntity(Of TEntity As Entity) (
propertyName As String,
relationshipSchemaName As String,
entity As TEntity
)
Parameters
propertyName
Type: System.StringType: String. The name of the property.
relationshipSchemaName
Type: System.StringType: String. The schema name of the relationship.
entity
Type: TEntityType: IEnumerable<TEntity>. The entity to be related.
Type Parameters
- TEntity
Type: Entity. The entity to which the entity is to be related.
See Also
SetRelatedEntity Overload
CrmEntity Class
Microsoft.Xrm.Client Namespace
Return to top