Condividi tramite


Metodo DataServiceContext.AddRelatedObject

Aggiunge un oggetto correlato al contesto e crea il collegamento che definisce la relazione tra i due oggetti in una singola richiesta.

Spazio dei nomi  System.Data.Services.Client
Assembly:  Microsoft.Data.Services.Client (in Microsoft.Data.Services.Client.dll)

Sintassi

'Dichiarazione
Public Sub AddRelatedObject ( _
    source As Object, _
    sourceProperty As String, _
    target As Object _
)
'Utilizzo
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
)

Parametri

  • source
    Tipo: System.Object
    Oggetto padre rilevato dal contesto.
  • sourceProperty
    Tipo: System.String
    Nome della proprietà di navigazione che restituisce l'oggetto correlato in base a un'associazione tra le due entità.

Osservazioni

È possibile chiamare il metodo AddRelatedObject per aggiungere un oggetto correlato anziché chiamare questi tre metodi: AddObject, AddLink, SetLink.

Vedere anche

Riferimento

DataServiceContext Classe

Spazio dei nomi System.Data.Services.Client