다음을 통해 공유


SqlServerDbFunctionsExtensions.FreeText 메서드

정의

오버로드

FreeText(DbFunctions, String, String, Int32)

LINQ 쿼리에서 SQL Server FREETEXT 저장소 함수를 대상으로 하는 데 사용할 수 있는 DbFunction 메서드 스텁입니다.

FreeText(DbFunctions, Object, String, Int32)

LINQ 쿼리에서 SQL Server FREETEXT 저장소 함수를 대상으로 하는 데 사용할 수 있는 DbFunction 메서드 스텁입니다.

FreeText(DbFunctions, Object, String)

LINQ 쿼리에서 SQL Server FREETEXT 저장소 함수를 대상으로 하는 데 사용할 수 있는 DbFunction 메서드 스텁입니다.

FreeText(DbFunctions, String, String)

LINQ 쿼리에서 SQL Server FREETEXT 저장소 함수를 대상으로 하는 데 사용할 수 있는 DbFunction 메서드 스텁입니다.

FreeText(DbFunctions, String, String, Int32)

LINQ 쿼리에서 SQL Server FREETEXT 저장소 함수를 대상으로 하는 데 사용할 수 있는 DbFunction 메서드 스텁입니다.

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 instance

propertyReference
String

검색을 수행할 속성입니다.

freeText
String

속성에서 검색할 텍스트입니다.

languageTerm
Int32

sys.syslanguages 테이블의 언어 ID입니다.

반환

설명

이 DbFunction 메서드는 메모리 내 구현이 없으며 쿼리가 클라이언트 평가로 전환되면 throw됩니다. 이 문제는 쿼리에 저장소로 변환할 수 없는 하나 이상의 식이 포함된 경우에 발생할 수 있습니다.

적용 대상

FreeText(DbFunctions, Object, String, Int32)

LINQ 쿼리에서 SQL Server FREETEXT 저장소 함수를 대상으로 하는 데 사용할 수 있는 DbFunction 메서드 스텁입니다.

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

테이블의 언어 ID입니다 sys.syslanguages .

반환

설명

자세한 내용 및 예제는 데이터베이스 함수EF Core를 사용하여 SQL Server 및 Azure SQL 데이터베이스 액세스를 참조하세요.

적용 대상

FreeText(DbFunctions, Object, String)

LINQ 쿼리에서 SQL Server FREETEXT 저장소 함수를 대상으로 하는 데 사용할 수 있는 DbFunction 메서드 스텁입니다.

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)

LINQ 쿼리에서 SQL Server FREETEXT 저장소 함수를 대상으로 하는 데 사용할 수 있는 DbFunction 메서드 스텁입니다.

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 instance

propertyReference
String

검색을 수행할 속성입니다.

freeText
String

속성에서 검색할 텍스트입니다.

반환

설명

이 DbFunction 메서드는 메모리 내 구현이 없으며 쿼리가 클라이언트 평가로 전환되면 throw됩니다. 이 문제는 쿼리에 저장소로 변환할 수 없는 하나 이상의 식이 포함된 경우에 발생할 수 있습니다.

적용 대상