ObjectQuery<T>.UnionAll(ObjectQuery<T>) 方法

定义

此查询生成器方法创建一个新查询,其结果为此查询的所有结果,以及其他查询的所有结果,包括任何重复项 (即结果不一定) 唯一。

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。

适用于