DataServiceContext.AddRelatedObject Method
.NET Framework 4
Adds a related object to the context and creates the link that defines the relationship between the two objects in a single request.
Assembly: System.Data.Services.Client (in System.Data.Services.Client.dll)
Parameters
- source
- Type: System.Object
The parent object that is being tracked by the context.
- sourceProperty
- Type: System.String
The name of the navigation property that returns the related object based on an association between the two entities.
- target
- Type: System.Object
The related object that is being added.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
There are some cases where SetLink may be required
If the data service provider doesn't treat links as inherently bi-directional (as Entity Framework does), then you may also need to call SetLink to define the back-reference in the relationship.
- 1/5/2011
- Glenn Gailey [MSFT]
- 3/3/2011
- Glenn Gailey [MSFT]