Declaration
public static IQueryable<T> Concat<T>(
this IQueryable<T> input,
T element
)
Summary
Adds a single element to the end of an IQueryable.
Generic type parameters
T | Type of enumerable to return. |
Returns
IQueryable containing all the input elements, followed by the specified additional element.