将 LINQ 事务设置为指定查询(不使用 SqlCommand)

发布于 2024-10-19 09:02:31 字数 523 浏览 1 评论 0原文

我很难正确指定问题的标题 - 本质上我收到一条错误消息“当分配给命令的连接处于挂起的本地事务中时,ExecuteReader 要求命令有一个事务。命令的 Transaction 属性没有已初始化。”对于与此类似的情况:

using (db = getDbContext())
{
   var results = (from t in db.table
                  select t.column).SingleOrDefault();
}

正如错误所述,所有这些都已经包含在另一个事务中,我也尝试将其用于此查询。

如何使用这种查询格式指定交易?

我尝试创建一个 SqlCommand("select column from table", myconnection, mytransaction), 这是可行的,但我更愿意使用 LINQ 语法来获得智能感知(除其他外)的好处,因为实际的查询相当复杂。

非常感谢,这已经让我烦恼了几个小时。

亚历克斯

I was having difficulty specifying the title for the question properly - essentially I am getting an error saying "ExecuteReader requires the command to have a transaction when the connection assigned to the command is in a pending local transaction. The Transaction property of the command has not been initialized." for a situation similar to this:

using (db = getDbContext())
{
   var results = (from t in db.table
                  select t.column).SingleOrDefault();
}

As the error says, all this is already wrapped in another transaction, which I am trying to use for this query as well.

How can I specify the transaction using this query format?

I've tried creating an SqlCommand("select column from table", myconnection, mytransaction),
which works, but I'd much rather use the LINQ syntax for the intellisense (amongst other) benefits, as the actual query is rather more complex

Many thanks, this has been annoying me for hours.

Alex

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

和我恋爱吧 2024-10-26 09:02:31

您可以将事务设置到上下文本身中:

db.Transaction = theTransaction;

You can set the transaction into the context itself:

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