RelationalPropertyExtensions.FormatColumns 方法

定义

重载

FormatColumns(IEnumerable<IProperty>)

创建以逗号分隔的属性名称列表。

FormatColumns(IEnumerable<IProperty>, StoreObjectIdentifier)

创建以逗号分隔的列名列表。

FormatColumns(IEnumerable<IReadOnlyProperty>, StoreObjectIdentifier)

创建以逗号分隔的列名列表。

FormatColumns(IEnumerable<IProperty>)

创建以逗号分隔的属性名称列表。

public static string FormatColumns (this System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Metadata.IProperty> properties);
static member FormatColumns : seq<Microsoft.EntityFrameworkCore.Metadata.IProperty> -> string
<Extension()>
Public Function FormatColumns (properties As IEnumerable(Of IProperty)) As String

参数

properties
IEnumerable<IProperty>

要设置格式的属性。

返回

以逗号分隔的属性名称列表。

适用于

FormatColumns(IEnumerable<IProperty>, StoreObjectIdentifier)

创建以逗号分隔的列名列表。

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

参数

properties
IEnumerable<IProperty>

要设置格式的属性。

storeObject
StoreObjectIdentifier

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

返回

以逗号分隔的列名列表。

适用于

FormatColumns(IEnumerable<IReadOnlyProperty>, StoreObjectIdentifier)

创建以逗号分隔的列名列表。

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

参数

properties
IEnumerable<IReadOnlyProperty>

要设置格式的属性。

storeObject
StoreObjectIdentifier

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

返回

以逗号分隔的列名列表。

适用于