ObjectQuery.ToTraceString 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回要針對資料來源執行的命令。
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());
}