Method Refresh
| Improve this Doc View SourceRefresh(DataSet<T>, Boolean)
Refresh by reloading DataSet.
Declaration
public void Refresh(DataSet<T> dataSet, bool resetCriteria = false)
Parameters
Type | Name | Description |
---|---|---|
DataSet<T> | dataSet | The DataSet to reload. |
System.Boolean | resetCriteria | Indicates whether filtering and sorting criteria should be reseted. |
Refresh(DataSet<T>, Predicate<DataRow>, IComparer<DataRow>)
Refresh by reloading DataSet, with specified filtering condition and sorting comparer.
Declaration
public void Refresh(DataSet<T> dataSet, Predicate<DataRow> where, IComparer<DataRow> orderBy)
Parameters
Type | Name | Description |
---|---|---|
DataSet<T> | dataSet | The DataSet to reload. |
System.Predicate<DataRow> | where | The filtering condition. |
System.Collections.Generic.IComparer<DataRow> | orderBy | The sorting comparer. |