共用方式為


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

包含資料行之類似資料表的存放區物件的識別碼。

傳回

以逗號分隔的資料行名稱清單。

適用於