Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 335609
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T10:09:53+00:00 2026-05-12T10:09:53+00:00

I’m using the following code in an ASP.NET page to create a record, then

  • 0

I’m using the following code in an ASP.NET page to create a record, then count the records to make sure I haven’t exceeded a set limit and rollback the transaction if I have.

using (var session = NhibernateHelper.OpenSession())
using (var transaction = session.BeginTransaction())
{
    session.Lock(mall, LockMode.None);

    var voucher = new Voucher();
    voucher.FirstName = firstName ?? string.Empty;
    voucher.LastName = lastName ?? string.Empty;
    voucher.Address = address ?? string.Empty;
    voucher.Address2 = address2 ?? string.Empty;
    voucher.City = city ?? string.Empty;
    voucher.State = state ?? string.Empty;
    voucher.Zip = zip ?? string.Empty;
    voucher.Email = email ?? string.Empty;
    voucher.Mall = mall;
    session.Save(voucher);

    var issued = session.CreateCriteria<Voucher>()
        .Add(Restrictions.Eq("Mall", mall))
        .SetProjection(Projections.Count("ID"))
        .UniqueResult<int>();

    if (issued >= mall.TotalVouchers)
    {
        transaction.Rollback();
        throw new VoucherLimitException();
    }

    transaction.Commit();
    return voucher;
}        

However, I’m getting a ton of deadlocks. I presume this happens because I’m trying to count the records in a table I just performed an insert on and a lock is still held on the inserted row, causing the deadlock.

  • Can anyone confirm this?
  • Can anyone suggest an fix?

I’ve tried calling SetLockMode(LockMode.None) on the final query, but that results in a NullReferenceException that I cannot figure out.

Edit: If I run the query before I save the object, it works, but then I’m not accomplishing the goal of verifying that my insert didn’t somehow go over the limit (in the case of concurrent inserts).

Edit: I found that using IsolationLevel.ReadUncommited in the session.BeginTransaction call solves the problem, but I’m no database expert. Is this the appropriate solution to the problem or should I adjust my logic some how?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T10:09:53+00:00Added an answer on May 12, 2026 at 10:09 am

    That design would be deadlock prone – typically (not always) one connection is unlikely to deadlock itself, but multiple connections that do inserts and aggregates against the same table are very likely to deadlock. That’s because while all activity in one transaction looks complete from the point of view of the connection doing the work — the db won’t lock a transaction out of “its own” records — the aggregate queries from OTHER transactions would attempt to lock the whole table or large portions of it at the same time, and those would deadlock.

    Read Uncommitted is not your friend in this case, because it basically says “ignore locks,” which at some point will mean violating the rules you’ve set up around the data. I.E. the count of records in the table will be inaccurate, and you’ll act on that inaccurate count. Your count will return 10 or 13 when the real answer is 11.

    The best advice I have is to rearrange your insert logic such that you capture the idea of the count, without literally counting the rows. You could go a couple of directions. One idea I have is this: literally number the inserted vouchers with a sequence and enforce a limit on the sequence itself.

    1. Make a sequence table with columns (I am guessing) MallID, nextVoucher, maxVouchers
    2. Seed that table with the mallids, 1, and whatever the limit is for each mall
    3. Change the insert logic to this pseudo code:
    Begin Transaction
    Sanity check the nextVoucher for Mall in the sequence table; if too many exist abort
    If less than MaxVouchers for Mall then {
      check, fetch, lock and increment nextVoucher
      if increment was successful then use the value of nextVoucher to perform your insert. 
        Include it in the target table.
    }
    Error? Rollback
    No Error? Commit
    

    A sequence table like this hurts concurrency some, but I think not as much as counting the rows in the table constantly. Be sure to perf test.
    Also, the [check, fetch, lock and increment] is important – you have to exclusively lock the row in the sequence table to prevent some other connection from using the same value in the split second before you increment it. I know the SQL syntax for this, but I’m afraid I am no nHibernate expert.

    For read uncommitted data errors, check this out: http://sqlblog.com/blogs/merrill_aldrich/archive/2009/07/29/transaction-isolation-dirty-reads-deadlocks-demo.aspx (disclaimer: Merrill Aldrich is me 🙂

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I want to count how many characters a certain string has in PHP, but
In order to apply a triggered animation to all ToolTip s in my app,
I want use html5's new tag to play a wav file (currently only supported
Is it possible to replace javascript w/ HTML if JavaScript is not enabled on
Seemingly simple, but I cannot find anything relevant on the web. What is the
Does anyone know how can I replace this 2 symbol below from the string

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.