다음을 통해 공유


RelationalDbFunctionsExtensions.Collate<TProperty> 메서드

정의

LINQ 쿼리에 사용할 데이터 정렬을 명시적으로 지정합니다. 와 같은 WHERE customer.name COLLATE 'de_DE' = 'John Doe'조각을 생성하는 데 사용할 수 있습니다.

public static TProperty Collate<TProperty> (this Microsoft.EntityFrameworkCore.DbFunctions _, TProperty operand, string collation);
static member Collate : Microsoft.EntityFrameworkCore.DbFunctions * 'Property * string -> 'Property
<Extension()>
Public Function Collate(Of TProperty) (_ As DbFunctions, operand As TProperty, collation As String) As TProperty

형식 매개 변수

TProperty

데이터 정렬이 지정되는 피연산자의 형식입니다.

매개 변수

_
DbFunctions

DbFunctions 인스턴스입니다.

operand
TProperty

데이터 정렬을 적용할 피연산자입니다.

collation
String

데이터 정렬의 이름입니다.

반환

TProperty

설명

사용 가능한 데이터 정렬 및 해당 이름은 데이터베이스에 따라 다릅니다. 자세한 내용은 데이터베이스 설명서를 참조하세요.

자세한 내용 및 예제는 데이터베이스 함수 를 참조하세요.

적용 대상