SqlServerDbFunctionsExtensions.FreeText 方法

定义

重载

FreeText(DbFunctions, String, String, Int32)

一个 DbFunction 方法存根,可用于 LINQ 查询中,以SQL SERVER FREETEXT 存储函数为目标。

FreeText(DbFunctions, Object, String, Int32)

可在 LINQ 查询中使用的 DbFunction 方法存根,以SQL ServerFREETEXT存储函数为目标。

FreeText(DbFunctions, Object, String)

可在 LINQ 查询中使用的 DbFunction 方法存根,以SQL ServerFREETEXT存储函数为目标。

FreeText(DbFunctions, String, String)

一个 DbFunction 方法存根,可用于 LINQ 查询中,以SQL SERVER FREETEXT 存储函数为目标。

FreeText(DbFunctions, String, String, Int32)

一个 DbFunction 方法存根,可用于 LINQ 查询中,以SQL SERVER FREETEXT 存储函数为目标。

public static bool FreeText (this Microsoft.EntityFrameworkCore.DbFunctions _, string propertyReference, string freeText, int languageTerm);
static member FreeText : Microsoft.EntityFrameworkCore.DbFunctions * string * string * int -> bool
<Extension()>
Public Function FreeText (_ As DbFunctions, propertyReference As String, freeText As String, languageTerm As Integer) As Boolean

参数

_
DbFunctions

DbFunctions 实例

propertyReference
String

将对其执行搜索的属性。

freeText
String

将在 属性中搜索的文本。

languageTerm
Int32

sys.syslanguages 表中的语言 ID。

返回

注解

此 DbFunction 方法没有内存中实现,如果查询切换到客户端评估,将引发。 如果查询包含一个或多个无法转换为存储的表达式,则可能会发生这种情况。

适用于

FreeText(DbFunctions, Object, String, Int32)

可在 LINQ 查询中使用的 DbFunction 方法存根,以SQL ServerFREETEXT存储函数为目标。

public static bool FreeText (this Microsoft.EntityFrameworkCore.DbFunctions _, object propertyReference, string freeText, int languageTerm);
static member FreeText : Microsoft.EntityFrameworkCore.DbFunctions * obj * string * int -> bool
<Extension()>
Public Function FreeText (_ As DbFunctions, propertyReference As Object, freeText As String, languageTerm As Integer) As Boolean

参数

_
DbFunctions

DbFunctions 实例。

propertyReference
Object

将对其执行搜索的属性。

freeText
String

将在 属性中搜索的文本。

languageTerm
Int32

表中的语言 sys.syslanguages ID。

返回

注解

有关详细信息和示例,请参阅数据库函数和使用 EF Core 访问SQL Server和Azure SQL数据库

适用于

FreeText(DbFunctions, Object, String)

可在 LINQ 查询中使用的 DbFunction 方法存根,以SQL ServerFREETEXT存储函数为目标。

public static bool FreeText (this Microsoft.EntityFrameworkCore.DbFunctions _, object propertyReference, string freeText);
static member FreeText : Microsoft.EntityFrameworkCore.DbFunctions * obj * string -> bool
<Extension()>
Public Function FreeText (_ As DbFunctions, propertyReference As Object, freeText As String) As Boolean

参数

_
DbFunctions

DbFunctions 实例。

propertyReference
Object

将对其执行搜索的属性。

freeText
String

将在 属性中搜索的文本。

返回

注解

有关详细信息和示例,请参阅数据库函数和使用 EF Core 访问SQL Server和Azure SQL数据库

适用于

FreeText(DbFunctions, String, String)

一个 DbFunction 方法存根,可用于 LINQ 查询中,以SQL SERVER FREETEXT 存储函数为目标。

public static bool FreeText (this Microsoft.EntityFrameworkCore.DbFunctions _, string propertyReference, string freeText);
static member FreeText : Microsoft.EntityFrameworkCore.DbFunctions * string * string -> bool
<Extension()>
Public Function FreeText (_ As DbFunctions, propertyReference As String, freeText As String) As Boolean

参数

_
DbFunctions

DbFunctions 实例

propertyReference
String

将对其执行搜索的属性。

freeText
String

将在 属性中搜索的文本。

返回

注解

此 DbFunction 方法没有内存中实现,如果查询切换到客户端评估,将引发。 如果查询包含一个或多个无法转换为存储的表达式,则可能会发生这种情况。

适用于