ObjectQuery.ToTraceString Yöntem

Tanım

Veri kaynağında yürütülecek komutları döndürür.

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

Döndürülenler

string Sorgunun veri kaynağında yürüttüğü komutları temsil eden bir.

Öznitelikler

Örnekler

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());
}

Şunlara uygulanır

Ayrıca bkz.