| |
|
|
|
|
SingleWildCard Property
Use the single wild card to replace one character in search term. Single wild card could be a question (?), an underscore (_) or both of them. Also you can turn off wild characters functionallity.
[C#]
public enuSingleWildCard SingleWildCard() {get; set;}
|
enuSingleWildCard
enuSingleWildCard.Question
Text property of Search Control is set to: "_ean". If SingleWildCard property is set to enuSingleWildCard.Underscore, then SQL Query will find all four letter words that ends with ean, like Dean, Sean and so on. If SingleWildCard property is set to enuSingleWildCard.None then it will return only rows with exact phrase "_ean".
|
|
|
| |