ObjectQuery.ToTraceString 메서드

정의

데이터 원본에 대해 실행할 명령을 반환합니다.

public:
 System::String ^ ToTraceString();
[System.ComponentModel.Browsable(false)]
public string ToTraceString ();
[<System.ComponentModel.Browsable(false)>]
member this.ToTraceString : unit -> string
Public Function ToTraceString () As String

반환

쿼리가 데이터 원본에 대해 실행하는 명령을 나타내는 string입니다.

특성

예제

int productID = 900;
using (AdventureWorksEntities context =
    new AdventureWorksEntities())
{
    // Define the object query for the specific product.
    ObjectQuery<Product> productQuery =
        context.Products.Where("it.ProductID = @productID");
    productQuery.Parameters.Add(new ObjectParameter("productID", productID));

    // Write the store commands for the query.
    Console.WriteLine(productQuery.ToTraceString());
}

적용 대상

추가 정보