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

定义

通过根据另一个对象查询的结果排除结果的方式限制查询结果。

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

参数

query
ObjectQuery<T>

一个 ObjectQuery<T>,表示要从查询中排除的结果。

返回

新的 ObjectQuery<T> 实例,等效于根据指定的 query 应用了 EXCEPT 的原始实例。

例外

query 参数为 null 或空字符串。

示例

此示例使用 Except 方法创建新的 ObjectQuery<T> 对象,然后循环访问新查询的结果。

int productID = 900;
using (AdventureWorksEntities context =
    new AdventureWorksEntities())
{
    string queryString = @"SELECT VALUE product
        FROM AdventureWorksEntities.Products AS product";

    ObjectQuery<Product> productQuery =
        new ObjectQuery<Product>(queryString,
            context, MergeOption.NoTracking);

    string queryString2 = @"SELECT VALUE product
        FROM AdventureWorksEntities.Products
        AS product WHERE product.ProductID < @productID";

    ObjectQuery<Product> productQuery2 =
        new ObjectQuery<Product>(queryString2,
            context, MergeOption.NoTracking);

    productQuery2.Parameters.Add(new ObjectParameter("productID", productID));

    ObjectQuery<Product> productQuery3 =
        productQuery.Except(productQuery2);

    Console.WriteLine("Result of Except");
    Console.WriteLine("------------------");

    // Iterate through the collection of Product items
    // after the Except method was called.
    foreach (Product result in productQuery3)
        Console.WriteLine("Product Name: {0}",
            result.ProductID);
}

注解

提供 query 用于定义要排除的结果的 必须属于同一类型或与 ObjectQuery<T>兼容的类型。

在提供的 query 中定义的参数将与 实例中 ObjectQuery<T> 定义的参数合并。 参数在组合后的 ObjectParameterCollection 中必须是唯一的。 组合后的集合中不能有两个具有相同名称的参数。 有关详细信息,请参阅 查询生成器方法

生成的查询从 ObjectQuery<T> 实例(调用了它的 Except)继承连接。

适用于

另请参阅