| |
|
|
|
|
WhatColumns Property
Represents a boolean operator used if SearchColumns property contains more than one column. If this property is set to AnyColumn, control will return rows that contains search terms in any of the search columns. If WhatColumns is set to AllColumns, control will return only rows that contains search terms in every search column.
[C#]
public enuWhatColumns WhatColumns() {get; set;}
|
enuWhatColumns
enuWhatColumns.AnyColumn
Text property is set to "apple" and there are two search columns: Title and Description. WhatColumns is set to enuWhatColumns.AnyColumn. SQL query will return results where the column Title or column Description contains word "apple". If WhatColumns changes to enuWhatColumns.AllColumns, SQL query will return only rows that contains word "apple" both Title and Description columns.
|
|
|
| |