ObjectQuery<T>.UnionAll(ObjectQuery<T>) メソッド

定義

この query-builder メソッドは、このクエリのすべての結果に加えて、重複を含む他のクエリのすべての結果 (つまり、結果が必ずしも一意であるとは限りません) を含む新しいクエリを作成します。

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

パラメーター

query
ObjectQuery<T>

追加する結果を表すクエリ。

戻り値

新しい ObjectQuery インスタンス。

例外

クエリ パラメーターが null の場合。

適用対象