次の方法で共有


RelationalPropertiesConfigurationBuilderExtensions.UseCollation メソッド

定義

オーバーロード

UseCollation(PropertiesConfigurationBuilder, String)

指定された照合順序を使用するように プロパティを構成します。 データベース列は、指定された照合順序で作成され、照合順序に依存するすべての操作で暗黙的に使用されます。

UseCollation<TProperty>(PropertiesConfigurationBuilder<TProperty>, String)

指定された照合順序を使用するように プロパティを構成します。 データベース列は、指定された照合順序で作成され、照合順序に依存するすべての操作で暗黙的に使用されます。

UseCollation(PropertiesConfigurationBuilder, String)

指定された照合順序を使用するように プロパティを構成します。 データベース列は、指定された照合順序で作成され、照合順序に依存するすべての操作で暗黙的に使用されます。

public static Microsoft.EntityFrameworkCore.Metadata.Builders.PropertiesConfigurationBuilder UseCollation (this Microsoft.EntityFrameworkCore.Metadata.Builders.PropertiesConfigurationBuilder propertyBuilder, string collation);
static member UseCollation : Microsoft.EntityFrameworkCore.Metadata.Builders.PropertiesConfigurationBuilder * string -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertiesConfigurationBuilder
<Extension()>
Public Function UseCollation (propertyBuilder As PropertiesConfigurationBuilder, collation As String) As PropertiesConfigurationBuilder

パラメーター

propertyBuilder
PropertiesConfigurationBuilder

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

collation
String

列の照合順序。

戻り値

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

注釈

詳細と例については、「 データベースの照合順序 」を参照してください。

適用対象

UseCollation<TProperty>(PropertiesConfigurationBuilder<TProperty>, String)

指定された照合順序を使用するように プロパティを構成します。 データベース列は、指定された照合順序で作成され、照合順序に依存するすべての操作で暗黙的に使用されます。

public static Microsoft.EntityFrameworkCore.Metadata.Builders.PropertiesConfigurationBuilder<TProperty> UseCollation<TProperty> (this Microsoft.EntityFrameworkCore.Metadata.Builders.PropertiesConfigurationBuilder<TProperty> propertyBuilder, string collation);
static member UseCollation : Microsoft.EntityFrameworkCore.Metadata.Builders.PropertiesConfigurationBuilder<'Property> * string -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertiesConfigurationBuilder<'Property>
<Extension()>
Public Function UseCollation(Of TProperty) (propertyBuilder As PropertiesConfigurationBuilder(Of TProperty), collation As String) As PropertiesConfigurationBuilder(Of TProperty)

型パラメーター

TProperty

パラメーター

propertyBuilder
PropertiesConfigurationBuilder<TProperty>

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

collation
String

列の照合順序。

戻り値

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

注釈

詳細と例については、「 データベースの照合順序 」を参照してください。

適用対象