Compartir a través de


DataServiceContext.AddRelatedObject Método

Agrega un objeto relacionado al contexto y crea el vínculo que define la relación entre los dos objetos en una única solicitud.

Espacio de nombres:  System.Data.Services.Client
Ensamblado:  Microsoft.Data.Services.Client (en Microsoft.Data.Services.Client.dll)

Sintaxis

'Declaración
Public Sub AddRelatedObject ( _
    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.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
)

Parámetros

  • source
    Tipo: System.Object
    Objeto primario del que realiza un seguimiento el contexto.
  • sourceProperty
    Tipo: System.String
    Nombre de la propiedad de navegación que devuelve el objeto relacionado basándose en una asociación entre las dos entidades.
  • target
    Tipo: System.Object
    Objeto relacionado que se va a agregar.

Comentarios

Puede llamar al método AddRelatedObject para agregar un objeto relacionado en lugar de llamar a estos tres métodos: AddObject, AddLink, SetLink.

Vea también

Referencia

DataServiceContext Clase

Espacio de nombres System.Data.Services.Client