ObjectQuery<T>.Intersect(ObjectQuery<T>) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
此查询生成器方法创建一个新查询,其结果为此查询和指定的其他查询的结果。
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。