Class MySQLDbFunctionsExtensions
Provides CLR methods that are translated to database functions when used in a LINQ to Entities queries.
The methods in this class are accessed with Microsoft.
Inheritance
Namespace: MySql.EntityFrameworkCore.Extensions
Assembly: MySql.EntityFrameworkCore.dll
Version: 9.3.0
Syntax
public static class MySQLDbFunctionsExtensions
Methods
DateDiffDay(DbFunctions, DateOnly, DateOnly)
Counts the number of day boundaries crossed between the startDate and endDate. Corresponds to TIMESTAMPDIFF(DAY,startDate,endDate).
Declaration
public static int DateDiffDay(this DbFunctions _, DateOnly startDate, DateOnly endDate)
Parameters
Type | Name | Description |
---|---|---|
Microsoft. |
_ | The DbFunctions instance. |
System. |
startDate | Starting date for the calculation. |
System. |
endDate | Ending date for the calculation. |
Returns
Type | Description |
---|---|
System. |
Number of day boundaries crossed between the dates. |
DateDiffDay(DbFunctions, DateTime, DateTime)
Counts the number of day boundaries crossed between the startDate and endDate. Corresponds to TIMESTAMPDIFF(DAY,startDate,endDate).
Declaration
public static int DateDiffDay(this DbFunctions _, DateTime startDate, DateTime endDate)
Parameters
Type | Name | Description |
---|---|---|
Microsoft. |
_ | The DbFunctions instance. |
System. |
startDate | Starting date for the calculation. |
System. |
endDate | Ending date for the calculation. |
Returns
Type | Description |
---|---|
System. |
Number of day boundaries crossed between the dates. |
DateDiffDay(DbFunctions, DateTimeOffset, DateTimeOffset)
Counts the number of day boundaries crossed between the startDate and endDate. Corresponds to TIMESTAMPDIFF(DAY,startDate,endDate).
Declaration
public static int DateDiffDay(this DbFunctions _, DateTimeOffset startDate, DateTimeOffset endDate)
Parameters
Type | Name | Description |
---|---|---|
Microsoft. |
_ | The DbFunctions instance. |
System. |
startDate | Starting date for the calculation. |
System. |
endDate | Ending date for the calculation. |
Returns
Type | Description |
---|---|
System. |
Number of day boundaries crossed between the dates. |
DateDiffDay(DbFunctions, Nullable<DateOnly>, Nullable<DateOnly>)
Counts the number of day boundaries crossed between the startDate and endDate. Corresponds to TIMESTAMPDIFF(DAY,startDate,endDate).
Declaration
public static int? DateDiffDay(this DbFunctions _, DateOnly? startDate, DateOnly? endDate)
Parameters
Type | Name | Description |
---|---|---|
Microsoft. |
_ | The DbFunctions instance. |
System. |
startDate | Starting date for the calculation. |
System. |
endDate | Ending date for the calculation. |
Returns
Type | Description |
---|---|
System. |
Number of day boundaries crossed between the dates. |
DateDiffDay(DbFunctions, Nullable<DateTime>, Nullable<DateTime>)
Counts the number of day boundaries crossed between the startDate and endDate. Corresponds to TIMESTAMPDIFF(DAY,startDate,endDate).
Declaration
public static int? DateDiffDay(this DbFunctions _, DateTime? startDate, DateTime? endDate)
Parameters
Type | Name | Description |
---|---|---|
Microsoft. |
_ | The DbFunctions instance. |
System. |
startDate | Starting date for the calculation. |
System. |
endDate | Ending date for the calculation. |
Returns
Type | Description |
---|---|
System. |
Number of day boundaries crossed between the dates. |
DateDiffDay(DbFunctions, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>)
Counts the number of day boundaries crossed between the startDate and endDate. Corresponds to TIMESTAMPDIFF(DAY,startDate,endDate).
Declaration
public static int? DateDiffDay(this DbFunctions _, DateTimeOffset? startDate, DateTimeOffset? endDate)
Parameters
Type | Name | Description |
---|---|---|
Microsoft. |
_ | The DbFunctions instance. |
System. |
startDate | Starting date for the calculation. |
System. |
endDate | Ending date for the calculation. |
Returns
Type | Description |
---|---|
System. |
Number of day boundaries crossed between the dates. |
DateDiffHour(DbFunctions, DateTime, DateTime)
Counts the number of hour boundaries crossed between the startDate and endDate. Corresponds to TIMESTAMPDIFF(HOUR,startDate,endDate).
Declaration
public static int DateDiffHour(this DbFunctions _, DateTime startDate, DateTime endDate)
Parameters
Type | Name | Description |
---|---|---|
Microsoft. |
_ | The DbFunctions instance. |
System. |
startDate | Starting date for the calculation. |
System. |
endDate | Ending date for the calculation. |
Returns
Type | Description |
---|---|
System. |
Number of hour boundaries crossed between the dates. |
DateDiffHour(DbFunctions, DateTimeOffset, DateTimeOffset)
Counts the number of hour boundaries crossed between the startDate and endDate. Corresponds to TIMESTAMPDIFF(HOUR,startDate,endDate).
Declaration
public static int DateDiffHour(this DbFunctions _, DateTimeOffset startDate, DateTimeOffset endDate)
Parameters
Type | Name | Description |
---|---|---|
Microsoft. |
_ | The DbFunctions instance. |
System. |
startDate | Starting date for the calculation. |
System. |
endDate | Ending date for the calculation. |
Returns
Type | Description |
---|---|
System. |
Number of hour boundaries crossed between the dates. |
DateDiffHour(DbFunctions, Nullable<DateTime>, Nullable<DateTime>)
Counts the number of hour boundaries crossed between the startDate and endDate. Corresponds to TIMESTAMPDIFF(HOUR,startDate,endDate).
Declaration
public static int? DateDiffHour(this DbFunctions _, DateTime? startDate, DateTime? endDate)
Parameters
Type | Name | Description |
---|---|---|
Microsoft. |
_ | The DbFunctions instance. |
System. |
startDate | Starting date for the calculation. |
System. |
endDate | Ending date for the calculation. |
Returns
Type | Description |
---|---|
System. |
Number of hour boundaries crossed between the dates. |
DateDiffHour(DbFunctions, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>)
Counts the number of hour boundaries crossed between the startDate and endDate. Corresponds to TIMESTAMPDIFF(HOUR,startDate,endDate).
Declaration
public static int? DateDiffHour(this DbFunctions _, DateTimeOffset? startDate, DateTimeOffset? endDate)
Parameters
Type | Name | Description |
---|---|---|
Microsoft. |
_ | The DbFunctions instance. |
System. |
startDate | Starting date for the calculation. |
System. |
endDate | Ending date for the calculation. |
Returns
Type | Description |
---|---|
System. |
Number of hour boundaries crossed between the dates. |
DateDiffMicrosecond(DbFunctions, DateTime, DateTime)
Counts the number of microsecond boundaries crossed between the startDate and endDate. Corresponds to TIMESTAMPDIFF(MICROSECOND,startDate,endDate).
Declaration
public static int DateDiffMicrosecond(this DbFunctions _, DateTime startDate, DateTime endDate)
Parameters
Type | Name | Description |
---|---|---|
Microsoft. |
_ | The DbFunctions instance. |
System. |
startDate | Starting date for the calculation. |
System. |
endDate | Ending date for the calculation. |
Returns
Type | Description |
---|---|
System. |
Number of microsecond boundaries crossed between the dates. |
DateDiffMicrosecond(DbFunctions, DateTimeOffset, DateTimeOffset)
Counts the number of microsecond boundaries crossed between the startDate and endDate. Corresponds to TIMESTAMPDIFF(MICROSECOND,startDate,endDate).
Declaration
public static int DateDiffMicrosecond(this DbFunctions _, DateTimeOffset startDate, DateTimeOffset endDate)
Parameters
Type | Name | Description |
---|---|---|
Microsoft. |
_ | The DbFunctions instance. |
System. |
startDate | Starting date for the calculation. |
System. |
endDate | Ending date for the calculation. |
Returns
Type | Description |
---|---|
System. |
Number of microsecond boundaries crossed between the dates. |
DateDiffMicrosecond(DbFunctions, Nullable<DateTime>, Nullable<DateTime>)
Counts the number of microsecond boundaries crossed between the startDate and endDate. Corresponds to TIMESTAMPDIFF(MICROSECOND,startDate,endDate).
Declaration
public static int? DateDiffMicrosecond(this DbFunctions _, DateTime? startDate, DateTime? endDate)
Parameters
Type | Name | Description |
---|---|---|
Microsoft. |
_ | The DbFunctions instance. |
System. |
startDate | Starting date for the calculation. |
System. |
endDate | Ending date for the calculation. |
Returns
Type | Description |
---|---|
System. |
Number of microsecond boundaries crossed between the dates. |
DateDiffMicrosecond(DbFunctions, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>)
Counts the number of microsecond boundaries crossed between the startDate and endDate. Corresponds to TIMESTAMPDIFF(MICROSECOND,startDate,endDate).
Declaration
public static int? DateDiffMicrosecond(this DbFunctions _, DateTimeOffset? startDate, DateTimeOffset? endDate)
Parameters
Type | Name | Description |
---|---|---|
Microsoft. |
_ | The DbFunctions instance. |
System. |
startDate | Starting date for the calculation. |
System. |
endDate | Ending date for the calculation. |
Returns
Type | Description |
---|---|
System. |
Number of microsecond boundaries crossed between the dates. |
DateDiffMinute(DbFunctions, DateTime, DateTime)
Counts the number of minute boundaries crossed between the startDate and endDate. Corresponds to TIMESTAMPDIFF(MINUTE,startDate,endDate).
Declaration
public static int DateDiffMinute(this DbFunctions _, DateTime startDate, DateTime endDate)
Parameters
Type | Name | Description |
---|---|---|
Microsoft. |
_ | The DbFunctions instance. |
System. |
startDate | Starting date for the calculation. |
System. |
endDate | Ending date for the calculation. |
Returns
Type | Description |
---|---|
System. |
Number of minute boundaries crossed between the dates. |
DateDiffMinute(DbFunctions, DateTimeOffset, DateTimeOffset)
Counts the number of minute boundaries crossed between the startDate and endDate. Corresponds to TIMESTAMPDIFF(MINUTE,startDate,endDate).
Declaration
public static int DateDiffMinute(this DbFunctions _, DateTimeOffset startDate, DateTimeOffset endDate)
Parameters
Type | Name | Description |
---|---|---|
Microsoft. |
_ | The DbFunctions instance. |
System. |
startDate | Starting date for the calculation. |
System. |
endDate | Ending date for the calculation. |
Returns
Type | Description |
---|---|
System. |
Number of minute boundaries crossed between the dates. |
DateDiffMinute(DbFunctions, Nullable<DateTime>, Nullable<DateTime>)
Counts the number of minute boundaries crossed between the startDate and endDate. Corresponds to TIMESTAMPDIFF(MINUTE,startDate,endDate).
Declaration
public static int? DateDiffMinute(this DbFunctions _, DateTime? startDate, DateTime? endDate)
Parameters
Type | Name | Description |
---|---|---|
Microsoft. |
_ | The DbFunctions instance. |
System. |
startDate | Starting date for the calculation. |
System. |
endDate | Ending date for the calculation. |
Returns
Type | Description |
---|---|
System. |
Number of minute boundaries crossed between the dates. |
DateDiffMinute(DbFunctions, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>)
Counts the number of minute boundaries crossed between the startDate and endDate. Corresponds to TIMESTAMPDIFF(MINUTE,startDate,endDate).
Declaration
public static int? DateDiffMinute(this DbFunctions _, DateTimeOffset? startDate, DateTimeOffset? endDate)
Parameters
Type | Name | Description |
---|---|---|
Microsoft. |
_ | The DbFunctions instance. |
System. |
startDate | Starting date for the calculation. |
System. |
endDate | Ending date for the calculation. |
Returns
Type | Description |
---|---|
System. |
Number of minute boundaries crossed between the dates. |
DateDiffMonth(DbFunctions, DateOnly, DateOnly)
Counts the number of month boundaries crossed between the startDate and endDate. Corresponds to TIMESTAMPDIFF(MONTH,startDate,endDate).
Declaration
public static int DateDiffMonth(this DbFunctions _, DateOnly startDate, DateOnly endDate)
Parameters
Type | Name | Description |
---|---|---|
Microsoft. |
_ | The DbFunctions instance. |
System. |
startDate | Starting date for the calculation. |
System. |
endDate | Ending date for the calculation. |
Returns
Type | Description |
---|---|
System. |
Number of month boundaries crossed between the dates. |
DateDiffMonth(DbFunctions, DateTime, DateTime)
Counts the number of month boundaries crossed between the startDate and endDate. Corresponds to TIMESTAMPDIFF(MONTH,startDate,endDate).
Declaration
public static int DateDiffMonth(this DbFunctions _, DateTime startDate, DateTime endDate)
Parameters
Type | Name | Description |
---|---|---|
Microsoft. |
_ | The DbFunctions instance. |
System. |
startDate | Starting date for the calculation. |
System. |
endDate | Ending date for the calculation. |
Returns
Type | Description |
---|---|
System. |
Number of month boundaries crossed between the dates. |
DateDiffMonth(DbFunctions, DateTimeOffset, DateTimeOffset)
Counts the number of month boundaries crossed between the startDate and endDate. Corresponds to TIMESTAMPDIFF(MONTH,startDate,endDate).
Declaration
public static int DateDiffMonth(this DbFunctions _, DateTimeOffset startDate, DateTimeOffset endDate)
Parameters
Type | Name | Description |
---|---|---|
Microsoft. |
_ | The DbFunctions instance. |
System. |
startDate | Starting date for the calculation. |
System. |
endDate | Ending date for the calculation. |
Returns
Type | Description |
---|---|
System. |
Number of month boundaries crossed between the dates. |
DateDiffMonth(DbFunctions, Nullable<DateOnly>, Nullable<DateOnly>)
Counts the number of month boundaries crossed between the startDate and endDate. Corresponds to TIMESTAMPDIFF(MONTH,startDate,endDate).
Declaration
public static int? DateDiffMonth(this DbFunctions _, DateOnly? startDate, DateOnly? endDate)
Parameters
Type | Name | Description |
---|---|---|
Microsoft. |
_ | The DbFunctions instance. |
System. |
startDate | Starting date for the calculation. |
System. |
endDate | Ending date for the calculation. |
Returns
Type | Description |
---|---|
System. |
Number of month boundaries crossed between the dates. |
DateDiffMonth(DbFunctions, Nullable<DateTime>, Nullable<DateTime>)
Counts the number of month boundaries crossed between the startDate and endDate. Corresponds to TIMESTAMPDIFF(MONTH,startDate,endDate).
Declaration
public static int? DateDiffMonth(this DbFunctions _, DateTime? startDate, DateTime? endDate)
Parameters
Type | Name | Description |
---|---|---|
Microsoft. |
_ | The DbFunctions instance. |
System. |
startDate | Starting date for the calculation. |
System. |
endDate | Ending date for the calculation. |
Returns
Type | Description |
---|---|
System. |
Number of month boundaries crossed between the dates. |
DateDiffMonth(DbFunctions, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>)
Counts the number of month boundaries crossed between the startDate and endDate. Corresponds to TIMESTAMPDIFF(MONTH,startDate,endDate).
Declaration
public static int? DateDiffMonth(this DbFunctions _, DateTimeOffset? startDate, DateTimeOffset? endDate)
Parameters
Type | Name | Description |
---|---|---|
Microsoft. |
_ | The DbFunctions instance. |
System. |
startDate | Starting date for the calculation. |
System. |
endDate | Ending date for the calculation. |
Returns
Type | Description |
---|---|
System. |
Number of month boundaries crossed between the dates. |
DateDiffSecond(DbFunctions, DateTime, DateTime)
Counts the number of boundaries (in seconds) crossed between the startDate and endDate. Corresponds to TIMESTAMPDIFF(SECOND,startDate,endDate).
Declaration
public static int DateDiffSecond(this DbFunctions _, DateTime startDate, DateTime endDate)
Parameters
Type | Name | Description |
---|---|---|
Microsoft. |
_ | The DbFunctions instance. |
System. |
startDate | Starting date for the calculation. |
System. |
endDate | Ending date for the calculation. |
Returns
Type | Description |
---|---|
System. |
Number of boundaries (in seconds) crossed between the dates. |
DateDiffSecond(DbFunctions, DateTimeOffset, DateTimeOffset)
Counts the number of boundaries (in seconds) crossed between the startDate and endDate. Corresponds to TIMESTAMPDIFF(SECOND,startDate,endDate).
Declaration
public static int DateDiffSecond(this DbFunctions _, DateTimeOffset startDate, DateTimeOffset endDate)
Parameters
Type | Name | Description |
---|---|---|
Microsoft. |
_ | The DbFunctions instance. |
System. |
startDate | Starting date for the calculation. |
System. |
endDate | Ending date for the calculation. |
Returns
Type | Description |
---|---|
System. |
Number of boundaries (in seconds) crossed between the dates. |
DateDiffSecond(DbFunctions, Nullable<DateTime>, Nullable<DateTime>)
Counts the number of boundaries (in seconds) crossed between the startDate and endDate. Corresponds to TIMESTAMPDIFF(SECOND,startDate,endDate).
Declaration
public static int? DateDiffSecond(this DbFunctions _, DateTime? startDate, DateTime? endDate)
Parameters
Type | Name | Description |
---|---|---|
Microsoft. |
_ | The DbFunctions instance. |
System. |
startDate | Starting date for the calculation. |
System. |
endDate | Ending date for the calculation. |
Returns
Type | Description |
---|---|
System. |
Number of boundaries (in seconds) crossed between the dates. |
DateDiffSecond(DbFunctions, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>)
Counts the number of boundaries (in seconds) crossed between the startDate and endDate. Corresponds to TIMESTAMPDIFF(SECOND,startDate,endDate).
Declaration
public static int? DateDiffSecond(this DbFunctions _, DateTimeOffset? startDate, DateTimeOffset? endDate)
Parameters
Type | Name | Description |
---|---|---|
Microsoft. |
_ | The DbFunctions instance. |
System. |
startDate | Starting date for the calculation. |
System. |
endDate | Ending date for the calculation. |
Returns
Type | Description |
---|---|
System. |
Number of boundaries (in seconds) crossed between the dates. |
DateDiffYear(DbFunctions, DateOnly, DateOnly)
Counts the number of year boundaries crossed between the startDate and endDate. Corresponds to TIMESTAMPDIFF(YEAR,startDate,endDate).
Declaration
public static int DateDiffYear(this DbFunctions _, DateOnly startDate, DateOnly endDate)
Parameters
Type | Name | Description |
---|---|---|
Microsoft. |
_ | The DbFunctions instance. |
System. |
startDate | Starting date for the calculation. |
System. |
endDate | Ending date for the calculation. |
Returns
Type | Description |
---|---|
System. |
Number of year boundaries crossed between the dates. |
DateDiffYear(DbFunctions, DateTime, DateTime)
Counts the number of year boundaries crossed between the startDate and endDate. Corresponds to TIMESTAMPDIFF(YEAR,startDate,endDate).
Declaration
public static int DateDiffYear(this DbFunctions _, DateTime startDate, DateTime endDate)
Parameters
Type | Name | Description |
---|---|---|
Microsoft. |
_ | The DbFunctions instance. |
System. |
startDate | Starting date for the calculation. |
System. |
endDate | Ending date for the calculation. |
Returns
Type | Description |
---|---|
System. |
Number of year boundaries crossed between the dates. |
DateDiffYear(DbFunctions, DateTimeOffset, DateTimeOffset)
Counts the number of year boundaries crossed between the startDate and endDate. Corresponds to TIMESTAMPDIFF(YEAR,startDate,endDate).
Declaration
public static int DateDiffYear(this DbFunctions _, DateTimeOffset startDate, DateTimeOffset endDate)
Parameters
Type | Name | Description |
---|---|---|
Microsoft. |
_ | The DbFunctions instance. |
System. |
startDate | Starting date for the calculation. |
System. |
endDate | Ending date for the calculation. |
Returns
Type | Description |
---|---|
System. |
Number of year boundaries crossed between the dates. |
DateDiffYear(DbFunctions, Nullable<DateOnly>, Nullable<DateOnly>)
Counts the number of year boundaries crossed between the startDate and endDate. Corresponds to TIMESTAMPDIFF(YEAR,startDate,endDate).
Declaration
public static int? DateDiffYear(this DbFunctions _, DateOnly? startDate, DateOnly? endDate)
Parameters
Type | Name | Description |
---|---|---|
Microsoft. |
_ | The DbFunctions instance. |
System. |
startDate | Starting date for the calculation. |
System. |
endDate | Ending date for the calculation. |
Returns
Type | Description |
---|---|
System. |
Number of year boundaries crossed between the dates. |
DateDiffYear(DbFunctions, Nullable<DateTime>, Nullable<DateTime>)
Counts the number of year boundaries crossed between the startDate and endDate. Corresponds to TIMESTAMPDIFF(YEAR,startDate,endDate).
Declaration
public static int? DateDiffYear(this DbFunctions _, DateTime? startDate, DateTime? endDate)
Parameters
Type | Name | Description |
---|---|---|
Microsoft. |
_ | The DbFunctions instance. |
System. |
startDate | Starting date for the calculation. |
System. |
endDate | Ending date for the calculation. |
Returns
Type | Description |
---|---|
System. |
Number of year boundaries crossed between the dates. |
DateDiffYear(DbFunctions, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>)
Counts the number of year boundaries crossed between the startDate and endDate. Corresponds to TIMESTAMPDIFF(YEAR,startDate,endDate).
Declaration
public static int? DateDiffYear(this DbFunctions _, DateTimeOffset? startDate, DateTimeOffset? endDate)
Parameters
Type | Name | Description |
---|---|---|
Microsoft. |
_ | The DbFunctions instance. |
System. |
startDate | Starting date for the calculation. |
System. |
endDate | Ending date for the calculation. |
Returns
Type | Description |
---|---|
System. |
Number of year boundaries crossed between the dates. |
Like<T>(DbFunctions, T, String)
An implementation of the SQL LIKE operation. In relational databases this is usually directly translated to SQL.
Note that if this function is translated into SQL, then the semantics of the comparison depends on the database configuration. In particular, it may be either case-sensitive or case-insensitive. If this function is evaluated on the client, then it always uses a case-insensitive comparison.
Declaration
public static bool Like<T>(this DbFunctions _, T matchExpression, string pattern)
Parameters
Type | Name | Description |
---|---|---|
Microsoft. |
_ | The DbFunctions instance. |
T | matchExpression | The property of entity that is to be matched. |
System. |
pattern | A pattern that may involve wildcards %,_,[,],^. |
Returns
Type | Description |
---|---|
System. |
true if there is a match; otherwise, false. |
Type Parameters
Name | Description |
---|---|
T |
Like<T>(DbFunctions, T, String, String)
An implementation of the SQL LIKE operation. In relational databases, this is usually directly translated to SQL.
Note that if this function is translated into SQL, then the semantics of the comparison depends on the database configuration. In particular, it may be either case-sensitive or case-insensitive. If this function is evaluated on the client, then it always uses a case-insensitive comparison.
Declaration
public static bool Like<T>(this DbFunctions _, T matchExpression, string pattern, string escapeCharacter)
Parameters
Type | Name | Description |
---|---|---|
Microsoft. |
_ | The DbFunctions instance. |
T | matchExpression | The property of entity that is to be matched. |
System. |
pattern | A pattern that may involve wildcards %,_,[,],^. |
System. |
escapeCharacter | The escape character (as a single character string) to use in front of %,_,[,],^ if they are not used as wildcards. |
Returns
Type | Description |
---|---|
System. |
true if there is a match; otherwise, false. |
Type Parameters
Name | Description |
---|---|
T |
Match(DbFunctions, String[], String, MySQLMatchSearchMode)
An implementation of the SQL MATCH function used to perform a natural language search for a string against a text collection. A collection is a set of one or more columns included in a FULLTEXT index.
MATCH (col1,col2,...) AGAINST (expr [search_modifier])
Declaration
public static bool Match(this DbFunctions _, string[] properties, string pattern, MySQLMatchSearchMode searchMode)
Parameters
Type | Name | Description |
---|---|---|
Microsoft. |
_ | The DbFunctions instance. |
System. |
properties | The columns of the entity that is to be matched. |
System. |
pattern | A pattern that may involve wildcards %,_,[,],^. |
My |
searchMode | Indicates what type of search to perform |
Returns
Type | Description |
---|---|
System. |
true if there is a match; otherwise, false. |