다음을 통해 공유


RelationalPropertiesConfigurationBuilderExtensions.UseCollation 메서드

정의

오버로드

UseCollation(PropertiesConfigurationBuilder, String)

지정된 데이터 정렬을 사용하도록 속성을 구성합니다. 데이터베이스 열은 지정된 데이터 정렬을 사용하여 만들어지고 모든 데이터 정렬에 중요한 작업에서 암시적으로 사용됩니다.

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

지정된 데이터 정렬을 사용하도록 속성을 구성합니다. 데이터베이스 열은 지정된 데이터 정렬을 사용하여 만들어지고 모든 데이터 정렬에 중요한 작업에서 암시적으로 사용됩니다.

UseCollation(PropertiesConfigurationBuilder, String)

Source:
RelationalPropertiesConfigurationBuilderExtensions.cs
Source:
RelationalPropertiesConfigurationBuilderExtensions.cs
Source:
RelationalPropertiesConfigurationBuilderExtensions.cs
Source:
RelationalPropertiesConfigurationBuilderExtensions.cs

지정된 데이터 정렬을 사용하도록 속성을 구성합니다. 데이터베이스 열은 지정된 데이터 정렬을 사용하여 만들어지고 모든 데이터 정렬에 중요한 작업에서 암시적으로 사용됩니다.

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

열에 대한 데이터 정렬입니다.

반환

여러 호출을 연결할 수 있도록 동일한 작성기가 instance.

설명

자세한 내용 및 예제는 데이터베이스 데이터 정렬 을 참조하세요.

적용 대상

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

Source:
RelationalPropertiesConfigurationBuilderExtensions.cs
Source:
RelationalPropertiesConfigurationBuilderExtensions.cs
Source:
RelationalPropertiesConfigurationBuilderExtensions.cs
Source:
RelationalPropertiesConfigurationBuilderExtensions.cs

지정된 데이터 정렬을 사용하도록 속성을 구성합니다. 데이터베이스 열은 지정된 데이터 정렬을 사용하여 만들어지고 모든 데이터 정렬에 중요한 작업에서 암시적으로 사용됩니다.

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

열에 대한 데이터 정렬입니다.

반환

여러 호출을 연결할 수 있도록 동일한 작성기가 instance.

설명

자세한 내용 및 예제는 데이터베이스 데이터 정렬 을 참조하세요.

적용 대상