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:
 void AddRelatedObject(System::Object ^ source, System::String ^ sourceProperty, System::Object ^ target);
public void AddRelatedObject (object source, string sourceProperty, object target);
member this.AddRelatedObject : obj * string * obj -> unit
Public 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.

Remarks

You can call the AddRelatedObject method to add a related object instead of calling these three methods: AddObject, AddLink, SetLink.

Applies to