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

定义

此查询生成器方法创建一个新查询,其结果为此查询和指定的其他查询的结果。

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

参数

query
ObjectQuery<T>

表示要与之相交的结果的查询。

返回

新的 ObjectQuery 实例。

例外

如果查询参数为 null。

适用于