Gets or sets the expression used to filter which rows are viewed in the DataView.
Public Overridable Property RowFilter As String
Dim instance As DataView Dim value As String value = instance.RowFilter instance.RowFilter = value
public virtual string RowFilter { get; set; }
public: virtual property String^ RowFilter { String^ get (); void set (String^ value); }
public function get RowFilter () : String public function set RowFilter (value : String)
To form a RowFilter value, specify the name of a column followed by an operator and a value to filter on. The value must be in quotation marks. For example:
"LastName = 'Smith'"
See the Expression property of the DataColumn class for more information.
To return only those columns with null values, use the following expression:
"Isnull(Col1,'Null Column') = 'Null Column'"
The following example creates a DataView and sets its RowFilter property.
Private Sub MakeDataView() Dim view As DataView = New DataView With view .Table = DataSet1.Tables("Suppliers") .AllowDelete = True .AllowEdit = True .AllowNew = True .RowFilter = "City = 'Berlin'" .RowStateFilter = DataViewRowState.ModifiedCurrent .Sort = "CompanyName DESC" End With ' Simple-bind to a TextBox control Text1.DataBindings.Add("Text", view, "CompanyName") End Sub
private void MakeDataView() { DataView view = new DataView(); view.Table = DataSet1.Tables["Suppliers"]; view.AllowDelete = true; view.AllowEdit = true; view.AllowNew = true; view.RowFilter = "City = 'Berlin'"; view.RowStateFilter = DataViewRowState.ModifiedCurrent; view.Sort = "CompanyName DESC"; // Simple-bind to a TextBox control Text1.DataBindings.Add("Text", view, "CompanyName"); }
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC, Xbox 360, Zune
The syntax for the RowFilter expression is documented here:
http://msdn2.microsoft.com/en-us/library/system.data.datacolumn.expression(vs.71).aspx
Syntax description and examples how to use the DataView.RowFilter can be found here:
http://www.csharp-examples.net/dataview-rowfilter/