共用方式為


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

備註

可用的定序及其名稱會因資料庫而異,請參閱資料庫的檔以取得詳細資訊。

如需詳細資訊和範例,請參閱 資料庫函 式。

適用於