| |
|
|
|
|
enuMultipleWildCard Enumeration
Represents enumeration used for MultipleWildCard property.
Member Name |
Description |
None |
There is no multiple wild character |
Asterisk |
Asterisk ( * ) used as multiple wild character |
Percent |
Percent ( % ) used as multiple wild character |
AsteriskOrPercent |
Both characters * or % are used as multiple wild characters. |
Text property of Search Control is set to: "sea*". If MultipleWildCard property is set to enuMultipleWildCard.Asterisk, then SQL Query will return rows that contains words that starts with sea. If MultipleWildCard is set to enuMultipleWildCard.None, it will return only records with exact string "sea*"
Text |
MultipleWildCard |
Returns rows : |
| apple% |
None |
that contains exact string "apple%" |
| apple* |
AsteriskOrPercent |
that contains any string that starts with "apple" |
| *apple or banana* |
Asterisk |
that contains words that ends with "apple" and starts with "banana" |
|
|
|
| |