Q. Why are you storing the `AnswerCount` in the `Posts` table in the first place?

An alternative approach is to eliminate the "write back" to the `Posts` table by not storing the `AnswerCount` in the table but to dynamically calculate that each time.

Yes, this will mean you're running an additional query to `SELECT COUNT(*) FROM Answers WHERE post_id = @id` but this typically results in an `INDEX SCAN` and may be more efficient in the use of resources than using `READ ISOLATION`.

*There's more than one way to skin a cat.  De-normalisation of a database schema can introduce scalability issues.*