DataServiceContext.AttachLink Método
Notifica a DataServiceContext que empiece a realizar el seguimiento del vínculo especificado que define una relación entre los objetos de entidad.
Espacio de nombres: System.Data.Services.Client
Ensamblado: Microsoft.Data.Services.Client (en Microsoft.Data.Services.Client.dll)
Sintaxis
'Declaración
Public Sub AttachLink ( _
source As Object, _
sourceProperty As String, _
target As Object _
)
'Uso
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
)
Parámetros
- source
Tipo: System.Object
Objeto de origen en el nuevo vínculo.
- sourceProperty
Tipo: System.String
Nombre de la propiedad del objeto de origen que representa el vínculo entre el objeto de origen y de destino.
- target
Tipo: System.Object
Objeto de destino del vínculo enlazado al objeto de origen especificado en esta llamada.El objeto de destino debe ser del tipo identificado por la propiedad de origen o un subtipo.
Excepciones
Excepción | Condición |
---|---|
ArgumentNullException | Cuando source, sourceProperty o target es NULL. |
InvalidOperationException | Cuando el vínculo entre las dos entidades ya existe. O bien |