1 type derived from EnumerableRowCollection
System.Data.DataSetExtensions (1)
System\Data\OrderedEnumerableRowCollection.cs (1)
23
public sealed class OrderedEnumerableRowCollection<TRow> :
EnumerableRowCollection
<TRow>
12 instantiations of EnumerableRowCollection
System.Data.DataSetExtensions (12)
System\Data\DataTableExtensions.cs (1)
39
return new
EnumerableRowCollection
<DataRow>(source);
System\Data\EnumerableRowCollectionExtensions.cs (3)
32
new
EnumerableRowCollection
<TRow>(source, Enumerable.Where<TRow>(source, predicate), null); //copy constructor
180
return new
EnumerableRowCollection
<S>(((object)source) as EnumerableRowCollection<S>,
203
EnumerableRowCollection<TResult> newEdt = new
EnumerableRowCollection
<TResult>(
System\Data\TypedTableBase.cs (1)
65
EnumerableRowCollection<T> erc = new
EnumerableRowCollection
<T>((DataTable)this);
System\Data\TypedTableBaseExtensions.cs (7)
32
EnumerableRowCollection<TRow> erc = new
EnumerableRowCollection
<TRow>((DataTable)source);
44
EnumerableRowCollection<TRow> erc = new
EnumerableRowCollection
<TRow>((DataTable)source);
57
EnumerableRowCollection<TRow> erc = new
EnumerableRowCollection
<TRow>((DataTable)source);
69
EnumerableRowCollection<TRow> erc = new
EnumerableRowCollection
<TRow>((DataTable)source);
82
EnumerableRowCollection<TRow> erc = new
EnumerableRowCollection
<TRow>((DataTable)source);
97
EnumerableRowCollection<TRow> erc = new
EnumerableRowCollection
<TRow>((DataTable)source);
117
return new
EnumerableRowCollection
<TRow>(source as DataTable);
33 references to EnumerableRowCollection
System.Data.DataSetExtensions (33)
System\Data\DataTableExtensions.cs (3)
36
public static
EnumerableRowCollection
<DataRow> AsEnumerable(this DataTable source)
271
public static DataView AsDataView<T>(this
EnumerableRowCollection
<T> source) where T : DataRow
273
DataSetUtil.CheckArgumentNull<
EnumerableRowCollection
<T>>(source, "source");
System\Data\EnumerableRowCollection.cs (1)
118
internal EnumerableRowCollection(
EnumerableRowCollection
<TRow> source, IEnumerable<TRow> enumerableRows, Func<TRow, TRow> selector)
System\Data\EnumerableRowCollectionExtensions.cs (17)
27
public static
EnumerableRowCollection
<TRow> Where<TRow>(
28
this
EnumerableRowCollection
<TRow> source,
31
EnumerableRowCollection
<TRow> edt =
41
this
EnumerableRowCollection
<TRow> source,
55
this
EnumerableRowCollection
<TRow> source,
69
this
EnumerableRowCollection
<TRow> source,
83
this
EnumerableRowCollection
<TRow> source,
105
new OrderedEnumerableRowCollection<TRow>((
EnumerableRowCollection
<TRow>)source, ie);
123
new OrderedEnumerableRowCollection<TRow>((
EnumerableRowCollection
<TRow>)source, ie);
140
new OrderedEnumerableRowCollection<TRow>((
EnumerableRowCollection
<TRow>)source, ie);
158
new OrderedEnumerableRowCollection<TRow>((
EnumerableRowCollection
<TRow>)source, ie);
169
public static
EnumerableRowCollection
<S> Select<TRow, S>(
170
this
EnumerableRowCollection
<TRow> source,
180
return new EnumerableRowCollection<S>(((object)source) as
EnumerableRowCollection
<S>,
188
public static
EnumerableRowCollection
<TResult> Cast<TResult>(this EnumerableRowCollection source)
195
return (
EnumerableRowCollection
<TResult>)(object)source;
203
EnumerableRowCollection
<TResult> newEdt = new EnumerableRowCollection<TResult>(
System\Data\OrderedEnumerableRowCollection.cs (1)
28
internal OrderedEnumerableRowCollection(
EnumerableRowCollection
<TRow> enumerableTable, IEnumerable<TRow> enumerableRows)
System\Data\TypedTableBase.cs (2)
63
public
EnumerableRowCollection
<TResult> Cast<TResult>()
65
EnumerableRowCollection
<T> erc = new EnumerableRowCollection<T>((DataTable)this);
System\Data\TypedTableBaseExtensions.cs (9)
27
public static
EnumerableRowCollection
<TRow> Where<TRow>(
32
EnumerableRowCollection
<TRow> erc = new EnumerableRowCollection<TRow>((DataTable)source);
44
EnumerableRowCollection
<TRow> erc = new EnumerableRowCollection<TRow>((DataTable)source);
57
EnumerableRowCollection
<TRow> erc = new EnumerableRowCollection<TRow>((DataTable)source);
69
EnumerableRowCollection
<TRow> erc = new EnumerableRowCollection<TRow>((DataTable)source);
82
EnumerableRowCollection
<TRow> erc = new EnumerableRowCollection<TRow>((DataTable)source);
92
public static
EnumerableRowCollection
<S> Select<TRow, S>(
97
EnumerableRowCollection
<TRow> erc = new EnumerableRowCollection<TRow>((DataTable)source);
114
public static
EnumerableRowCollection
<TRow> AsEnumerable<TRow>(this TypedTableBase<TRow> source) where TRow : DataRow