RelationalPropertyExtensions.GetColumnNames 方法

定义

重载

GetColumnNames(IEnumerable<IProperty>, StoreObjectIdentifier)

创建列名的列表。

GetColumnNames(IEnumerable<IReadOnlyProperty>, StoreObjectIdentifier)

创建列名的列表。

GetColumnNames(IEnumerable<IProperty>, StoreObjectIdentifier)

创建列名的列表。

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)

参数

properties
IEnumerable<IProperty>

要设置格式的属性。

storeObject
StoreObjectIdentifier

包含列的类似表的存储对象的标识符。

返回

列名称的列表。

适用于

GetColumnNames(IEnumerable<IReadOnlyProperty>, StoreObjectIdentifier)

创建列名的列表。

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)

参数

properties
IEnumerable<IReadOnlyProperty>

要设置格式的属性。

storeObject
StoreObjectIdentifier

包含列的类似表的存储对象的标识符。

返回

列名称的列表。

适用于