ExtensionMethods.Key Method (IEdmEntityType)

Gets the key with the specified type.

Namespace:  Microsoft.Data.Edm
Assembly:  Microsoft.Data.Edm (in Microsoft.Data.Edm.dll)

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function Key ( _
    type As IEdmEntityType _
) As IEnumerable(Of IEdmStructuralProperty)
'Usage
Dim type As IEdmEntityType 
Dim returnValue As IEnumerable(Of IEdmStructuralProperty)

returnValue = type.Key()
public static IEnumerable<IEdmStructuralProperty> Key(
    this IEdmEntityType type
)
[ExtensionAttribute]
public:
static IEnumerable<IEdmStructuralProperty^>^ Key(
    IEdmEntityType^ type
)
static member Key : 
        type:IEdmEntityType -> IEnumerable<IEdmStructuralProperty> 
public static function Key(
    type : IEdmEntityType
) : IEnumerable<IEdmStructuralProperty>

Parameters

Return Value

Type: System.Collections.Generic.IEnumerable<IEdmStructuralProperty>
The key.

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.103) or https://msdn.microsoft.com/en-us/library/bb383977(v=vs.103).

See Also

Reference

ExtensionMethods Class

Key Overload

Microsoft.Data.Edm Namespace