DatasetTable.WhereCondition Property

Defines the Where condition for the DatasetTable.
<ID("WhereCondition", (int)e.WhereCondition, true)> _ 
Public Property WhereCondition() As String
This language is not supported or no code example is available.
[ID("WhereCondition", (int)e.WhereCondition, true)] 
public string WhereCondition {get; set;}
This language is not supported or no code example is available.

Property Value

string
Remarks
 
The SQL WHERE clause is used to select data conditionally.
Example
 
//The select command will return only the items where the DateAdded is greather than 01/01/2010
 @Dataset.Table.table1.WhereCondition = "DateAdded > '01/01/2010'";
 					

.NET Framework

Supported in: 4.6.2, 4.7

In this article

Definition