Partager via


Méthode DataServiceContext.AddRelatedObject

Ajoute un objet associé au contexte et crée le lien qui définit la relation entre les deux objets dans une requête unique.

Espace de noms :  System.Data.Services.Client
Assembly :  Microsoft.Data.Services.Client (en Microsoft.Data.Services.Client.dll)

Syntaxe

'Déclaration
Public Sub AddRelatedObject ( _
    source As Object, _
    sourceProperty As String, _
    target As Object _
)
'Utilisation
Dim instance As DataServiceContext
Dim source As Object
Dim sourceProperty As String
Dim target As Object

instance.AddRelatedObject(source, sourceProperty, _
    target)
public void AddRelatedObject(
    Object source,
    string sourceProperty,
    Object target
)
public:
void AddRelatedObject(
    Object^ source, 
    String^ sourceProperty, 
    Object^ target
)
member AddRelatedObject : 
        source:Object * 
        sourceProperty:string * 
        target:Object -> unit 
public function AddRelatedObject(
    source : Object, 
    sourceProperty : String, 
    target : Object
)

Paramètres

  • source
    Type : System.Object
    Objet parent qui est en cours de suivi par le contexte.
  • sourceProperty
    Type : System.String
    Nom de la propriété de navigation qui retourne l'objet associé basé sur une association entre les deux entités.

Notes

Vous pouvez appeler la méthode AddRelatedObject pour ajouter un objet associé au lieu d'appeler ces trois méthodes : AddObject, AddLink et SetLink.

Voir aussi

Référence

DataServiceContext Classe

Espace de noms System.Data.Services.Client