Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Extension method: IQueryable<T> Concat<T>(this IQueryable<T>, T)

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

TType of enumerable to return.

Returns

IQueryable containing all the input elements, followed by the specified additional element.