ExtensionMethods.RowDefinition Method
Gets the row type to which the type refers.
Namespace: Microsoft.Data.Edm
Assembly: Microsoft.Data.Edm (in Microsoft.Data.Edm.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function RowDefinition ( _
type As IEdmRowTypeReference _
) As IEdmRowType
'Usage
Dim type As IEdmRowTypeReference
Dim returnValue As IEdmRowType
returnValue = type.RowDefinition()
public static IEdmRowType RowDefinition(
this IEdmRowTypeReference type
)
[ExtensionAttribute]
public:
static IEdmRowType^ RowDefinition(
IEdmRowTypeReference^ type
)
static member RowDefinition :
type:IEdmRowTypeReference -> IEdmRowType
public static function RowDefinition(
type : IEdmRowTypeReference
) : IEdmRowType
Parameters
- type
Type: Microsoft.Data.Edm.IEdmRowTypeReference
The reference to a row type.
Return Value
Type: Microsoft.Data.Edm.IEdmRowType
The row type.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IEdmRowTypeReference. 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).