RelationalPropertyExtensions.GetColumnNames Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Entity Framework