DataServiceContext.AddRelatedObject(Object, String, Object) Method
Definition
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 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.