RelationalPropertyExtensions.GetColumnNames Method

Definition

Overloads

GetColumnNames(IEnumerable<IProperty>, StoreObjectIdentifier)

Creates a list of column names.

GetColumnNames(IEnumerable<IReadOnlyProperty>, StoreObjectIdentifier)

Creates a list of column names.

GetColumnNames(IEnumerable<IProperty>, StoreObjectIdentifier)

Creates a list of column names.

public static System.Collections.Generic.IReadOnlyList<string> GetColumnNames (this System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Metadata.IProperty> properties, in Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier storeObject);
static member GetColumnNames : seq<Microsoft.EntityFrameworkCore.Metadata.IProperty> * StoreObjectIdentifier -> System.Collections.Generic.IReadOnlyList<string>
<Extension()>
Public Function GetColumnNames (properties As IEnumerable(Of IProperty), ByRef storeObject As StoreObjectIdentifier) As IReadOnlyList(Of String)

Parameters

properties
IEnumerable<IProperty>

The properties to format.

storeObject
StoreObjectIdentifier

The identifier of the table-like store object containing the column.

Returns

A list of column names.

Applies to

GetColumnNames(IEnumerable<IReadOnlyProperty>, StoreObjectIdentifier)

Creates a list of column names.

public static System.Collections.Generic.IReadOnlyList<string>? GetColumnNames (this System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty> properties, in Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier storeObject);
static member GetColumnNames : seq<Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty> * StoreObjectIdentifier -> System.Collections.Generic.IReadOnlyList<string>
<Extension()>
Public Function GetColumnNames (properties As IEnumerable(Of IReadOnlyProperty), ByRef storeObject As StoreObjectIdentifier) As IReadOnlyList(Of String)

Parameters

properties
IEnumerable<IReadOnlyProperty>

The properties to format.

storeObject
StoreObjectIdentifier

The identifier of the table-like store object containing the column.

Returns

A list of column names.

Applies to