Hl Guys,
I am busy writing a backend administrative program for a system that exists. I have selected NHibernate for my data access solution and am fairly new to it.
Got the same error message but it was triggered by a delete. The simple reason was the entry had been deleted before already.
For anyone having problems with inserts with AutoNumber / AutoIncrement for MySQL use the mapping. I found that the .Identity can be temperamental
Id(x => x.Id).GeneratedBy.Increment();
I'm pretty sure you'll need to add a <version/>
property to your MeetingAdministrator
class to have this working propertly. See this article for further discussion.