ExtensionMethods.BaseEntityType Method (IEdmEntityType)
Gets the base entity type.
Namespace: Microsoft.Data.Edm
Assembly: Microsoft.Data.Edm (in Microsoft.Data.Edm.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function BaseEntityType ( _
type As IEdmEntityType _
) As IEdmEntityType
'Usage
Dim type As IEdmEntityType
Dim returnValue As IEdmEntityType
returnValue = type.BaseEntityType()
public static IEdmEntityType BaseEntityType(
this IEdmEntityType type
)
[ExtensionAttribute]
public:
static IEdmEntityType^ BaseEntityType(
IEdmEntityType^ type
)
static member BaseEntityType :
type:IEdmEntityType -> IEdmEntityType
public static function BaseEntityType(
type : IEdmEntityType
) : IEdmEntityType
Parameters
- type
Type: Microsoft.Data.Edm.IEdmEntityType
The entity type.
Return Value
Type: Microsoft.Data.Edm.IEdmEntityType
The base entity type.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IEdmEntityType. 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.113) or https://msdn.microsoft.com/en-us/library/bb383977(v=vs.113).