I using Oracle rdbms.
My mapping looks like this
Id(x => x.Tid,"ID").Column("ID").GeneratedBy.TriggerIdentity();
but the SQL request ends up looking like:
NHibernate: INSERT INTO bla bla bla :nhIdOutParam = NULL [Type: Int32 (0)]
Why does nhIdOutParam always return null value?
fluent-nHibernate version is 1.2.0.712. nHibernate version is 3.1.0.4000
returning nhIdOutParamwhich assignes the generated id to this out parameter – Firo Feb 16 at 13:40