次の方法で共有


IOrganizationService.Associate メソッド

適用対象: CRM 2015 on-prem, CRM Online

Creates a link between records.

名前空間: Microsoft.Xrm.Sdk
アセンブリ: Microsoft.Xrm.Sdk (Microsoft.Xrm.Sdk.dll に含まれる)

構文

'宣言
<FaultContractAttribute(GetType(OrganizationServiceFault))> _
<OperationContractAttribute> _
Sub Associate ( _
    entityName As String, _
    entityId As Guid, _
    relationship As Relationship, _
    relatedEntities As EntityReferenceCollection _
)
[FaultContractAttribute(typeof(OrganizationServiceFault))] 
[OperationContractAttribute] 
void Associate (
    string entityName,
    Guid entityId,
    Relationship relationship,
    EntityReferenceCollection relatedEntities
)

パラメーター

  • entityName
    Type: 文字列. The logical name of the entity that is specified in the entityId parameter.
  • entityId
    Type: Guid. レコードの ID to which the related records are associated.
  • relationship
    Type: Relationship. The name of the relationship to be used to create the link.
  • relatedEntities
    Type: EntityReferenceCollection. エンティティ参照 (レコードへの参照) のコレクション to be associated.

The following example shows how to use the Associate method to create an association or link between records. For this sample to work correctly, you must be connected to the server to get an IOrganizationService interface. You can find the complete sample in the sample code package in the folder SampleCode\CS\GeneralProgramming\LateBound\AssociateDisassociateDE.cs.

備考

Message Availability

このメッセージは、呼び出し元がサーバーに接続されているか、オフラインであるかに関係なく機能します。

Privileges and Access Rights

To perform this action, the caller must have privileges on the entity that is specified in the entityName parameter and access rights on the record that is specified in the entityId parameter. For a list of the required privileges, see Associate Privileges.

Notes for Callers

This method creates multiple associations in one transaction between the record that is specified by the entityId parameter and each record in the relatedEntities parameter for the specified relationship in the relationship parameter.

For a one-to-many relationship, this method sets the ReferencingAttribute in the related record to the value of the entityId.

For a many-to-many relationship, this method creates a record in the intersect table for the relationship, which contains the ID of both the referenced and referencing records. The intersect table name is defined in the IntersectEntityName property for the relationship. You need this when you query for the records. However, you need the relationship name to set the Relationship property. This name is defined in the SchemaName property for the relationship.

For more information about the exceptions that can be thrown when this method is called, see Handle Exceptions in Your Code.

Supported Entities

You can use this method to associate any records that participate in a relationship, including records for custom entities.

スレッド セーフ

この種類のパブリックな静的 (Visual Basic では Shared) メンバーはスレッド セーフです。インスタンス メンバーがスレッド セーフであることは保証されません。

プラットフォーム

開発プラットフォーム

Windows Vista、Windows Server 2003、および

対象プラットフォーム

Windows Vista、Windows XP

関連項目

参照

IOrganizationService インターフェイス
IOrganizationService のメンバー
Microsoft.Xrm.Sdk 名前空間
Entity Metadata
AssociateRequest
AssociateResponse
Assign

他のリソース

Customize Entity Relationship Metadata
Sample: Associate (Early Bound)
Handle Exceptions in Your Code
Troubleshooting and Error Handling

Send comments about this topic to Microsoft.
© 2014 Microsoft Corporation. All rights reserved.