nhibernate-core icon indicating copy to clipboard operation
nhibernate-core copied to clipboard

discriminator-value cannot be set to null

Open tohidemyname opened this issue 1 year ago • 0 comments

I am porting a Java hibernate project to C#. The Java project has an annotation:

@DiscriminatorValue("null")

I port it to hbm.xml:

<class name="xxx" discriminator-value="null" entity-name="xxx">

I got an exception:

NHibernate.Exceptions.GenericADOException:“could not execute batch command.[SQL: SQL not available]”

It looks like that NHbernate does not support null discriminator-value?

tohidemyname avatar Jul 01 '24 07:07 tohidemyname