Share via


ObjectQuery<T>.Union(ObjectQuery<T>) Method

Definition

This query-builder method creates a new query whose results are all of the results of this query, plus all of the results of the other query, without duplicates (i.e., results are unique).

public System.Data.Entity.Core.Objects.ObjectQuery<T> Union (System.Data.Entity.Core.Objects.ObjectQuery<T> query);
member this.Union : System.Data.Entity.Core.Objects.ObjectQuery<'T> -> System.Data.Entity.Core.Objects.ObjectQuery<'T>
Public Function Union (query As ObjectQuery(Of T)) As ObjectQuery(Of T)

Parameters

query
ObjectQuery<T>

A query representing the results to add.

Returns

a new ObjectQuery instance.

Exceptions

If the query parameter is null.

Applies to