ObjectQuery.ToTraceString Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the commands to execute against the data source.
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
Returns
A string
that represents the commands that the query executes against the data source.
- Attributes
Examples
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());
}
Applies to
See also
التعاون معنا على GitHub
يمكن العثور على مصدر هذا المحتوى على GitHub حيث يمكنك أيضاً إضافة مشاكل وطلبات سحب ومراجعتها. للحصول على معلومات إضافية، اطلع على دليل المساهم لدينا.