次の方法で共有


RelationalPropertyBuilderExtensions.HasColumnOrder メソッド

定義

オーバーロード

HasColumnOrder(PropertyBuilder, Nullable<Int32>)

プロパティがマップされる列の順序を構成します。

HasColumnOrder(IConventionPropertyBuilder, Nullable<Int32>, Boolean)

プロパティがマップされる列の順序を構成します。

HasColumnOrder<TProperty>(PropertyBuilder<TProperty>, Nullable<Int32>)

プロパティがマップされる列の順序を構成します。

HasColumnOrder(PropertyBuilder, Nullable<Int32>)

プロパティがマップされる列の順序を構成します。

public static Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder HasColumnOrder (this Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder propertyBuilder, int? order);
static member HasColumnOrder : Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder * Nullable<int> -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder
<Extension()>
Public Function HasColumnOrder (propertyBuilder As PropertyBuilder, order As Nullable(Of Integer)) As PropertyBuilder

パラメーター

propertyBuilder
PropertyBuilder

構成されているプロパティのビルダー。

order
Nullable<Int32>

列の順序。

戻り値

複数の呼び出しをチェーンできるように、同じビルダー インスタンス。

適用対象

HasColumnOrder(IConventionPropertyBuilder, Nullable<Int32>, Boolean)

プロパティがマップされる列の順序を構成します。

public static Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionPropertyBuilder? HasColumnOrder (this Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionPropertyBuilder propertyBuilder, int? order, bool fromDataAnnotation = false);
static member HasColumnOrder : Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionPropertyBuilder * Nullable<int> * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionPropertyBuilder
<Extension()>
Public Function HasColumnOrder (propertyBuilder As IConventionPropertyBuilder, order As Nullable(Of Integer), Optional fromDataAnnotation As Boolean = false) As IConventionPropertyBuilder

パラメーター

propertyBuilder
IConventionPropertyBuilder

構成されているプロパティのビルダー。

order
Nullable<Int32>

列の順序。

fromDataAnnotation
Boolean

構成がデータ注釈を使用して指定されたかどうかを示す値。

戻り値

構成が適用された場合は同じビルダー インスタンス。 null それ以外の場合は 。

適用対象

HasColumnOrder<TProperty>(PropertyBuilder<TProperty>, Nullable<Int32>)

プロパティがマップされる列の順序を構成します。

public static Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<TProperty> HasColumnOrder<TProperty> (this Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<TProperty> propertyBuilder, int? order);
static member HasColumnOrder : Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<'Property> * Nullable<int> -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<'Property>
<Extension()>
Public Function HasColumnOrder(Of TProperty) (propertyBuilder As PropertyBuilder(Of TProperty), order As Nullable(Of Integer)) As PropertyBuilder(Of TProperty)

型パラメーター

TProperty

パラメーター

propertyBuilder
PropertyBuilder<TProperty>

構成されているプロパティのビルダー。

order
Nullable<Int32>

列の順序。

戻り値

複数の呼び出しをチェーンできるように、同じビルダー インスタンス。

適用対象