(Linq to Entity) 中 (Linq to Sql) 的 GetCommand() 函数的等效项

发布于 2024-12-15 02:57:19 字数 505 浏览 0 评论 0原文

我有一个为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

嘴硬脾气大 2024-12-22 02:57:19

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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文