ExtensionMethods.ToEntityType Method
Gets the entity type targeted by this navigation property.
Namespace: Microsoft.Data.Edm
Assembly: Microsoft.Data.Edm (in Microsoft.Data.Edm.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function ToEntityType ( _
property As IEdmNavigationProperty _
) As IEdmEntityType
'Usage
Dim property As IEdmNavigationProperty
Dim returnValue As IEdmEntityType
returnValue = property.ToEntityType()
public static IEdmEntityType ToEntityType(
this IEdmNavigationProperty property
)
[ExtensionAttribute]
public:
static IEdmEntityType^ ToEntityType(
IEdmNavigationProperty^ property
)
static member ToEntityType :
property:IEdmNavigationProperty -> IEdmEntityType
public static function ToEntityType(
property : IEdmNavigationProperty
) : IEdmEntityType
Parameters
- property
Type: Microsoft.Data.Edm.IEdmNavigationProperty
The reference to the calling object.
Return Value
Type: Microsoft.Data.Edm.IEdmEntityType
The entity type targeted by this navigation property.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IEdmNavigationProperty. When you use instance method syntax to call this method, omit the first parameter. For more information, see https://msdn.microsoft.com/en-us/library/bb384936(v=vs.103) or https://msdn.microsoft.com/en-us/library/bb383977(v=vs.103).