Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Extension method: IQueryable<Tuple<T, U>> Join<T, U>(this IQueryable<T>, IQueryable<U>)

Declaration

public static IQueryable<Tuple<T, U>> Join<T, U>(
    this IQueryable<T> source,
    IQueryable<U> with
)

Summary

Returns an enumeration of Tuple<T1, T2>s containing all ordered pairs of elements from the two source collections. For example, [1, 2].Join(["one", "two"]) results in the tuples [1, "one"], [1, "two"], [2, "one"] and [2, "two"].

Generic type parameters

TThis type parameter is not documented.
UThis type parameter is not documented.