RelationalPropertyExtensions.FormatColumns Method

Definition

Overloads

FormatColumns(IEnumerable<IProperty>)

Creates a comma-separated list of property names.

FormatColumns(IEnumerable<IProperty>, StoreObjectIdentifier)

Creates a comma-separated list of column names.

FormatColumns(IEnumerable<IReadOnlyProperty>, StoreObjectIdentifier)

Creates a comma-separated list of column names.

FormatColumns(IEnumerable<IProperty>)

Creates a comma-separated list of property names.

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

Parameters

properties
IEnumerable<IProperty>

The properties to format.

Returns

A comma-separated list of property names.

Applies to

FormatColumns(IEnumerable<IProperty>, StoreObjectIdentifier)

Creates a comma-separated list of column names.

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

Parameters

properties
IEnumerable<IProperty>

The properties to format.

storeObject
StoreObjectIdentifier

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

Returns

A comma-separated list of column names.

Applies to

FormatColumns(IEnumerable<IReadOnlyProperty>, StoreObjectIdentifier)

Creates a comma-separated list of column names.

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

Parameters

properties
IEnumerable<IReadOnlyProperty>

The properties to format.

storeObject
StoreObjectIdentifier

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

Returns

A comma-separated list of column names.

Applies to