DataServiceContext.AddRelatedObject(Object, String, Object) Method

Definition

Adds a related object to the context and creates the link that defines the relationship between the two objects in a single request.

public virtual void AddRelatedObject (object source, string sourceProperty, object target);
abstract member AddRelatedObject : obj * string * obj -> unit
override this.AddRelatedObject : obj * string * obj -> unit
Public Overridable Sub AddRelatedObject (source As Object, sourceProperty As String, target As Object)

Parameters

source
Object

The parent object that is being tracked by the context.

sourceProperty
String

The name of the navigation property that returns the related object based on an association between the two entities.

target
Object

The related object that is being added.

Applies to