Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

DataServiceContext.AddRelatedObject(Object, String, Object) Method

Definition

Namespace:
System.Data.Services.Client
Assembly:
System.Data.Services.Client.dll

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

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


Feedback

Was this page helpful?