nhibernate-core
nhibernate-core copied to clipboard
Quoting special words for the second hbm mapping does not work.
Example: https://github.com/iatsuta/nhibernate-core/tree/bugs/invalid-keyword-quoting Test: QuotingFaultTest
Line: var data1 = session.Query<QuoteDomainObject1>().ToArray();
will throw an exception if you change the hbm order in a line:
protected override string[] Mappings
{
get { return new string[] { "QuoteDomainObject1.hbm.xml", "QuoteDomainObject2.hbm.xml" }; }
}