11 return source2.Where(predicate);
18 return source2.OrderBy(keySelector);
32 return source2.OrderByDescending(keySelector);
46 return source2.Select(selector);
static EnumerableRowCollection< S > Select< TRow, S >(this TypedTableBase< TRow > source, Func< TRow, S > selector)
static ? TRow ElementAtOrDefault< TRow >(this TypedTableBase< TRow > source, int index)
static EnumerableRowCollection< TRow > Where< TRow >(this TypedTableBase< TRow > source, Func< TRow, bool > predicate)
static OrderedEnumerableRowCollection< TRow > OrderBy< TRow, TKey >(this TypedTableBase< TRow > source, Func< TRow, TKey > keySelector)
static OrderedEnumerableRowCollection< TRow > OrderByDescending< TRow, TKey >(this TypedTableBase< TRow > source, Func< TRow, TKey > keySelector)
static EnumerableRowCollection< TRow > AsEnumerable< TRow >(this TypedTableBase< TRow > source)