1. <small id='vu7Jp'></small><noframes id='vu7Jp'>

      <tfoot id='vu7Jp'></tfoot>
      <legend id='vu7Jp'><style id='vu7Jp'><dir id='vu7Jp'><q id='vu7Jp'></q></dir></style></legend>

          <bdo id='vu7Jp'></bdo><ul id='vu7Jp'></ul>
      1. <i id='vu7Jp'><tr id='vu7Jp'><dt id='vu7Jp'><q id='vu7Jp'><span id='vu7Jp'><b id='vu7Jp'><form id='vu7Jp'><ins id='vu7Jp'></ins><ul id='vu7Jp'></ul><sub id='vu7Jp'></sub></form><legend id='vu7Jp'></legend><bdo id='vu7Jp'><pre id='vu7Jp'><center id='vu7Jp'></center></pre></bdo></b><th id='vu7Jp'></th></span></q></dt></tr></i><div id='vu7Jp'><tfoot id='vu7Jp'></tfoot><dl id='vu7Jp'><fieldset id='vu7Jp'></fieldset></dl></div>

        如何使用 Entity Framework 在读取时锁定表?

        How can I lock a table on read, using Entity Framework?(如何使用 Entity Framework 在读取时锁定表?)
      2. <small id='Bct6s'></small><noframes id='Bct6s'>

          <i id='Bct6s'><tr id='Bct6s'><dt id='Bct6s'><q id='Bct6s'><span id='Bct6s'><b id='Bct6s'><form id='Bct6s'><ins id='Bct6s'></ins><ul id='Bct6s'></ul><sub id='Bct6s'></sub></form><legend id='Bct6s'></legend><bdo id='Bct6s'><pre id='Bct6s'><center id='Bct6s'></center></pre></bdo></b><th id='Bct6s'></th></span></q></dt></tr></i><div id='Bct6s'><tfoot id='Bct6s'></tfoot><dl id='Bct6s'><fieldset id='Bct6s'></fieldset></dl></div>

              <bdo id='Bct6s'></bdo><ul id='Bct6s'></ul>

            • <legend id='Bct6s'><style id='Bct6s'><dir id='Bct6s'><q id='Bct6s'></q></dir></style></legend>
              • <tfoot id='Bct6s'></tfoot>
                  <tbody id='Bct6s'></tbody>
                • 本文介绍了如何使用 Entity Framework 在读取时锁定表?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  限时送ChatGPT账号..

                  我有一个使用实体框架 (4.1) 访问的 SQL Server (2012).在数据库中,我有一个名为 URL 的表,一个独立的进程向其中提供新的 URL.URL 表中的条目可以处于新建"、处理中"或已处理"状态.

                  I have a SQL Server (2012) which I access using Entity Framework (4.1). In the database I have a table called URL into which an independent process feeds new URLs. An entry in the URL table can be in state "New", "In Process" or "Processed".

                  我需要从不同的计算机访问 URL 表,检查状态为New"的 URL 条目,取第一个并将其标记为In Process".

                  I need to access the URL table from different computers, check for URL entries with status "New", take the first one and mark it as "In Process".

                  var newUrl = dbEntity.URLs.FirstOrDefault(url => url.StatusID == (int) URLStatus.New);
                  if(newUrl != null)
                  {
                      newUrl.StatusID = (int) URLStatus.InProcess;
                      dbEntity.SaveChanges();
                  }
                  //Process the URL
                  

                  由于查询和更新不是原子的,我可以让两台不同的计算机读取和更新数据库中的同一个 URL 条目.

                  Since the query and update are not atomic, I can have two different computers read and update the same URL entry in the database.

                  有没有办法让 select-then-update 序列原子化以避免这种冲突?

                  Is there a way to make the select-then-update sequence atomic to avoid such clashes?

                  推荐答案

                  我只能通过手动向表发出锁定语句来真正实现这一点.这是一个完整的表锁,所以要小心!在我的情况下,它对于创建一个我不希望多个进程同时接触的队列很有用.

                  I was only able to really accomplish this by manually issuing a lock statement to a table. This does a complete table lock, so be careful with it! In my case it was useful for creating a queue that I didn't want multiple processes touching at once.

                  using (Entities entities = new Entities())
                  using (TransactionScope scope = new TransactionScope())
                  {
                      //Lock the table during this transaction
                      entities.Database.ExecuteSqlCommand("SELECT TOP 1 KeyColumn FROM MyTable WITH (TABLOCKX, HOLDLOCK)");
                  
                      //Do your work with the locked table here...
                  
                      //Complete the scope here to commit, otherwise it will rollback
                      //The table lock will be released after we exit the TransactionScope block
                      scope.Complete();
                  }
                  

                  更新 - 在 Entity Framework 6 中,尤其是使用 async/await 代码,您需要以不同的方式处理事务.在进行了一些转换后,这对我们来说是崩溃的.

                  Update - In Entity Framework 6, especially with async / await code, you need to handle the transactions differently. This was crashing for us after some conversions.

                  using (Entities entities = new Entities())
                  using (DbContextTransaction scope = entities.Database.BeginTransaction())
                  {
                      //Lock the table during this transaction
                      entities.Database.ExecuteSqlCommand("SELECT TOP 1 KeyColumn FROM MyTable WITH (TABLOCKX, HOLDLOCK)");
                  
                      //Do your work with the locked table here...
                  
                      //Complete the scope here to commit, otherwise it will rollback
                      //The table lock will be released after we exit the TransactionScope block
                      scope.Commit();
                  }
                  

                  这篇关于如何使用 Entity Framework 在读取时锁定表?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Force JsonConvert.SerializeXmlNode to serialize node value as an Integer or a Boolean(强制 JsonConvert.SerializeXmlNode 将节点值序列化为整数或布尔值)
                  Using JSON to Serialize/Deserialize TimeSpan(使用 JSON 序列化/反序列化 TimeSpan)
                  Could not determine JSON object type for type quot;Classquot;(无法确定类型“Class的 JSON 对象类型.)
                  How to deserialize a JSONP response (preferably with JsonTextReader and not a string)?(如何反序列化 JSONP 响应(最好使用 JsonTextReader 而不是字符串)?)
                  how to de-serialize JSON data in which Timestamp it-self contains fields?(如何反序列化时间戳本身包含字段的JSON数据?)
                  JSON.Net custom contract serialization and Collections(JSON.Net 自定义合约序列化和集合)

                  1. <tfoot id='rLqDt'></tfoot>
                      <tbody id='rLqDt'></tbody>

                        <bdo id='rLqDt'></bdo><ul id='rLqDt'></ul>
                        <legend id='rLqDt'><style id='rLqDt'><dir id='rLqDt'><q id='rLqDt'></q></dir></style></legend>
                        <i id='rLqDt'><tr id='rLqDt'><dt id='rLqDt'><q id='rLqDt'><span id='rLqDt'><b id='rLqDt'><form id='rLqDt'><ins id='rLqDt'></ins><ul id='rLqDt'></ul><sub id='rLqDt'></sub></form><legend id='rLqDt'></legend><bdo id='rLqDt'><pre id='rLqDt'><center id='rLqDt'></center></pre></bdo></b><th id='rLqDt'></th></span></q></dt></tr></i><div id='rLqDt'><tfoot id='rLqDt'></tfoot><dl id='rLqDt'><fieldset id='rLqDt'></fieldset></dl></div>

                        1. <small id='rLqDt'></small><noframes id='rLqDt'>