nhibernate-core
nhibernate-core copied to clipboard
NHibernate Object Relational Mapper
I have begun testing my system with dotnet 9 Preview 3 and received a message that the method MemberwiseClone should be virtual. I have just changed the version from 8...
This pull request is a work in progress for adding locale specific tests.
Fix SQL injections noticed in #3516. It does not fix wholly #3516. Bugs noted in #3516 that do not cause a security issue are not fixed.
If we do security patches for 5.4.x, shouldn't we upgrade vulnerable dependencies? At least in the main library, if not also in the test library.
When the Oracle8iDialect creates a temporary table name for tables with names longer than 27 characters, the "H" from the usual temporary table name prefix ("HT_") is truncated. fix #3456
I am porting a Java hibernate project to C#. The Java project has an annotation: @DiscriminatorValue("null") I port it to hbm.xml: `` I got an exception: NHibernate.Exceptions.GenericADOException:“could not execute batch...
I encountered an empty set from a join query. I reduced my program and submitted a pull request: https://github.com/nhibernate/nhibernate-core/pull/3568 I expect that the query should return a value. Please check...
A join query returns an empty set.
Hi, i get an strange behavior when i try to deserialize an entity wich is not lazy. ``` public class Entity { public System.Collections.Generic.ISet DetailList { get; set; } }...