DataServiceContext.GetLinkDescriptor(Object, String, Object) Method

Definition

Gets the LinkDescriptor for a specific link that defines the relationship between two entities.

public virtual Microsoft.OData.Client.LinkDescriptor GetLinkDescriptor (object source, string sourceProperty, object target);
abstract member GetLinkDescriptor : obj * string * obj -> Microsoft.OData.Client.LinkDescriptor
override this.GetLinkDescriptor : obj * string * obj -> Microsoft.OData.Client.LinkDescriptor
Public Overridable Function GetLinkDescriptor (source As Object, sourceProperty As String, target As Object) As LinkDescriptor

Parameters

source
Object

Source object in the link

sourceProperty
String

The name of the navigation property on the source object that returns the related object.

target
Object

The related entity.

Returns

The LinkDescriptor instance for the specified relationship, or null if a LinkDescriptor does not exist for the relationship.

Applies to