Condividi tramite


Metodo DataServiceContext.AttachLink

Notifica a DataServiceContext di iniziare a rilevare il collegamento specificato che definisce una relazione tra oggetti entità.

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

Sintassi

'Dichiarazione
Public Sub AttachLink ( _
    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.AttachLink(source, sourceProperty, _
    target)
public void AttachLink(
    Object source,
    string sourceProperty,
    Object target
)
public:
void AttachLink(
    Object^ source, 
    String^ sourceProperty, 
    Object^ target
)
member AttachLink : 
        source:Object * 
        sourceProperty:string * 
        target:Object -> unit 
public function AttachLink(
    source : Object, 
    sourceProperty : String, 
    target : Object
)

Parametri

  • source
    Tipo: System.Object
    Oggetto di origine nel nuovo collegamento.
  • sourceProperty
    Tipo: System.String
    Nome della proprietà nell'oggetto di origine che rappresenta il collegamento tra l'oggetto di origine e destinazione.
  • target
    Tipo: System.Object
    Oggetto di destinazione nel collegamento che è associato all'oggetto di origine specificato in questa chiamata.L'oggetto di destinazione deve essere del tipo identificato dalla proprietà di origine o un sottotipo.

Eccezioni

Eccezione Condizione
ArgumentNullException

Se source, sourceProperty o target è Null.

InvalidOperationException

Se esiste già il collegamento tra le due entità.

-oppure-

Se source o target è in uno stato Added o Deleted.

Vedere anche

Riferimento

DataServiceContext Classe

Spazio dei nomi System.Data.Services.Client