实体框架:ObjectContext获取生成的SQL更改脚本?
有没有办法获取对象上下文的所有SQL更改脚本?
注意:我不是在谈论 ObjectQuery.ToTraceString();
Is there a way to get all the SQL change script of the object context?
Note: I am not talking about ObjectQuery.ToTraceString();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,不幸的是,产品“中”没有任何东西可以直接从 ObjectContext 中获取。
不过,您应该看看 Jarek 的 TracingProvider,它在 EF 和 SqlClient 之间注入一个层来进行日志记录等。
阅读相关内容 此处。
No unfortunately there isn't anything 'in' the product and available directly off the ObjectContext.
However you should take a look at Jarek's TracingProvider, that injects a layer between the EF and SqlClient to do logging etc.
Read about it here.