如何获取Entity Framework在执行savechanges()前或执行后所生成的SQL语句
是程序获取,不是追踪查看。需要或取得不是查询功能的,是插入、更新、删除相关的语句现在知道了,.ObjectStateManager.GetObjectStateEntri...
是程序获取,不是追踪查看。需要或取得不是查询功能的,是插入、更新、删除相关的语句
现在知道了,
.ObjectStateManager.GetObjectStateEntries(System.Data.EntityState.Added)获取插入的其它的同理 展开
现在知道了,
.ObjectStateManager.GetObjectStateEntries(System.Data.EntityState.Added)获取插入的其它的同理 展开
若以下回答无法解决问题,邀请你更新回答
1个回答
展开全部
您好,命名空间: System.Data.Objects
程序集: System.Data.Entity(在 System.Data.Entity.dll 中)
语法
C#
C++
F#
VB
[BrowsableAttribute(false)]
public string ToTraceString()
返回值
类型:System.String
一个 string,表示查询对数据源执行的命令。
示例
本主题中的示例基于 Adventure Works Sales Model。
C#
VB
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());
}
程序集: System.Data.Entity(在 System.Data.Entity.dll 中)
语法
C#
C++
F#
VB
[BrowsableAttribute(false)]
public string ToTraceString()
返回值
类型:System.String
一个 string,表示查询对数据源执行的命令。
示例
本主题中的示例基于 Adventure Works Sales Model。
C#
VB
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());
}
追问
不是查询,你这个是获取查询语句的,我说的是插入、删除、修改操作的。查询的也用不到savechanges()啊
就你回答了,给你吧。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询