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

Quoting special words for the second hbm mapping does not work.

Open iatsuta opened this issue 3 years ago • 0 comments

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" }; }
	}

iatsuta avatar Feb 18 '22 09:02 iatsuta