Fixing NHibernate references

--HG--
branch : 1.x
This commit is contained in:
Sebastien Ros
2012-11-14 16:19:57 -08:00
parent ecc263fdf7
commit bf46e56b86
9 changed files with 32 additions and 12 deletions

View File

@@ -1 +1,14 @@
This is a patched version of NHibernate to prevent background JIT from failing.
This is a patched version of NHibernate to prevent background JIT from failing.
Applied https://nhibernate.jira.com/browse/NH-2958:
private static XmlSerializer _mappingDocumentSerializer = null;
private XmlSerializer mappingDocumentSerializer
{
get
{
if (_mappingDocumentSerializer == null)
_mappingDocumentSerializer = new XmlSerializer(typeof (HbmMapping));
return _mappingDocumentSerializer;
}
}