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

定义

此查询生成器方法创建一个新查询,其结果为此查询的所有结果,但也是指定其他查询的一部分的结果除外。

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

参数

query
ObjectQuery<T>

表示要排除的结果的查询。

返回

新的 ObjectQuery 实例。

例外

如果查询参数为 null。

适用于