(Linq to Entity) 中 (Linq to Sql) 的 GetCommand() 函数的等效项
我有一个为 Linq to Sql 编写的通用函数。
一些代码是:
string sqlCmd = dc.GetCommand(q).CommandText;
{
foreach (System.Data.Common.DbParameter dbp in dc.GetCommand(q).Parameters)
{
cmd.Parameters.Add(new System.Data.SqlClient.SqlParameter(dbp.ParameterName, dbp.Value));
}
}
其中 dc 是 DataContext。我正在使用 ObjectContext。 q 是 System.Linq.IQueryable。尽管有dc.GetCommand(q).CommandText。我该用什么就知道了。 DbParameter 也类似。任何帮助表示赞赏。
I have a generic function written for Linq to Sql.
Some code is:
string sqlCmd = dc.GetCommand(q).CommandText;
{
foreach (System.Data.Common.DbParameter dbp in dc.GetCommand(q).Parameters)
{
cmd.Parameters.Add(new System.Data.SqlClient.SqlParameter(dbp.ParameterName, dbp.Value));
}
}
where dc is a DataContext. I am using ObjectContext. q is System.Linq.IQueryable. So inspite of dc.GetCommand(q).CommandText. What should I use know. And similarly for DbParameter. Any help is appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
EF 没有与
GetCommand
等效的功能。如果您想访问参数,请尝试使用 EF Provider Wrapper(查看跟踪示例)。EF doesn't have equivalent to
GetCommand
. If you want to have access to parameters try to use EF Provider Wrapper (check sample for Tracing).