Getting this everytime I attempt to CREATE a particular entity ... just want to know how I should go about figuring out the cause.
I\'m using Fluent NHibernate autom
This can happen when trigger(s) execute additional DML (data modification) queries which affect the row counts. My solution was to add the following at the top of my trigger:
SET NOCOUNT ON;