6 instantiations of SortExpressionBuilder
System.Data.DataSetExtensions (6)
System\Data\EnumerableRowCollection.cs (3)
100
_sortExpression = new
SortExpressionBuilder
<TRow>();
111
_sortExpression = new
SortExpressionBuilder
<TRow>();
136
_sortExpression = new
SortExpressionBuilder
<TRow>();
System\Data\LinqDataView.cs (1)
45
this.sortExpressionBuilder = sortExpressionBuilder ?? new
SortExpressionBuilder
<DataRow>();
System\Data\SortExpressionBuilder.cs (2)
143
SortExpressionBuilder<T> builder = new
SortExpressionBuilder
<T>();
178
SortExpressionBuilder<TResult> builder = new
SortExpressionBuilder
<TResult>();
8 references to SortExpressionBuilder
System.Data.DataSetExtensions (8)
System\Data\EnumerableRowCollection.cs (1)
50
private readonly
SortExpressionBuilder
<TRow> _sortExpression;
System\Data\LinqDataView.cs (3)
34
internal readonly
SortExpressionBuilder
<DataRow> sortExpressionBuilder;
41
internal LinqDataView(DataTable table,
SortExpressionBuilder
<DataRow> sortExpressionBuilder)
71
SortExpressionBuilder
<DataRow> sortExpressionBuilder)
System\Data\SortExpressionBuilder.cs (4)
141
internal
SortExpressionBuilder
<T> Clone()
143
SortExpressionBuilder
<T> builder = new SortExpressionBuilder<T>();
176
internal
SortExpressionBuilder
<TResult> CloneCast<TResult>()
178
SortExpressionBuilder
<TResult> builder = new SortExpressionBuilder<TResult>();