ObjectQuery<T>.Where(String, ObjectParameter[]) メソッド

定義

指定されたフィルター条件と一致する結果となるようにクエリを制限します。

public:
 System::Data::Objects::ObjectQuery<T> ^ Where(System::String ^ predicate, ... cli::array <System::Data::Objects::ObjectParameter ^> ^ parameters);
public System.Data.Objects.ObjectQuery<T> Where (string predicate, params System.Data.Objects.ObjectParameter[] parameters);
member this.Where : string * System.Data.Objects.ObjectParameter[] -> System.Data.Objects.ObjectQuery<'T>
Public Function Where (predicate As String, ParamArray parameters As ObjectParameter()) As ObjectQuery(Of T)

パラメーター

predicate
String

フィルター述語。

parameters
ObjectParameter[]

このメソッドで使用される 0 個以上のパラメーター。

戻り値

WHERE が適用された元のインスタンスに相当する、新しい ObjectQuery<T> インスタンス。

例外

predicatenull です。

または

parametersnullです。

predicate が空の文字列です。

この例では、次の条件でフィルター処理された既存のクエリの結果を含む新しい ObjectQuery<T> を作成します。 "it.ProductID = 900"

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

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

    ObjectQuery<Product> productQuery2 =
        productQuery1.Where("it.ProductID = @productID");

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

    // Iterate through the collection of Product items.
    foreach (Product result in productQuery2)
    {
        Console.WriteLine("Product Name: {0}; Product ID: {1}",
            result.Name, result.ProductID);
    }
}

適用対象

こちらもご覧ください