-
Notifications
You must be signed in to change notification settings - Fork 0
FreeTextSearchDbFunctionsExtensions.FreeTextSearch
Overloads | |
---|---|
FreeTextSearch(this DbFunctions, object, string) | Perform a free text search. |
FreeTextSearch(this DbFunctions, object, string, bool) | Perform a free text search. |
FreeTextSearch(this DbFunctions, object, string, bool, int) | Perform a free text search. |
FreeTextSearch(this DbFunctions, object, string, int) | Perform a free text search. |
Perform a free text search.
public static bool FreeTextSearch(this Microsoft.EntityFrameworkCore.DbFunctions dbFunctions, object propertyReference, string freeText);
dbFunctions
Microsoft.EntityFrameworkCore.DbFunctions
The Microsoft.EntityFrameworkCore.DbFunctions instance.
propertyReference
System.Object
The property on which the search will be performed.
freeText
System.String
The text that will be searched for in the property.
System.Boolean
A System.Boolean value indicating whether the text exists in the property.
Perform a free text search.
public static bool FreeTextSearch(this Microsoft.EntityFrameworkCore.DbFunctions dbFunctions, object propertyReference, string freeText, bool useStemming);
dbFunctions
Microsoft.EntityFrameworkCore.DbFunctions
The Microsoft.EntityFrameworkCore.DbFunctions instance.
propertyReference
System.Object
The property on which the search will be performed.
freeText
System.String
The text that will be searched for in the property.
useStemming
System.Boolean
A value indicating whether stemming will be used when searching.
System.Boolean
A System.Boolean value indicating whether the text exists in the property.
FreeTextSearchDbFunctionsExtensions.FreeTextSearch(this DbFunctions, object, string, bool, int) Method
Perform a free text search.
public static bool FreeTextSearch(this Microsoft.EntityFrameworkCore.DbFunctions dbFunctions, object propertyReference, string freeText, bool useStemming, int languageTerm);
dbFunctions
Microsoft.EntityFrameworkCore.DbFunctions
The Microsoft.EntityFrameworkCore.DbFunctions instance.
propertyReference
System.Object
The property on which the search will be performed.
freeText
System.String
The text that will be searched for in the property.
useStemming
System.Boolean
A value indicating whether stemming will be used when searching.
languageTerm
System.Int32
A Language ID from the sys.syslanguages table (SQL Server only).
System.Boolean
A System.Boolean value indicating whether the text exists in the property.
Perform a free text search.
public static bool FreeTextSearch(this Microsoft.EntityFrameworkCore.DbFunctions dbFunctions, object propertyReference, string freeText, int languageTerm);
dbFunctions
Microsoft.EntityFrameworkCore.DbFunctions
The Microsoft.EntityFrameworkCore.DbFunctions instance.
propertyReference
System.Object
The property on which the search will be performed.
freeText
System.String
The text that will be searched for in the property.
languageTerm
System.Int32
A Language ID from the sys.syslanguages table (SQL Server only).
System.Boolean
A System.Boolean value indicating whether the text exists in the property.