private void CreateTypeWithNHAliasReferenceAttributeValue(INHElement element, IXmlAttribute attribute) { if (attribute.Value == null) return; var parser = new ReferenceParser(); var newElement = parser.ParseReferenceType(attribute.Value, new NHGlobalQualifier(element)); ReplaceAttributeValue(attribute, newElement); }
private void CreateTypeReferenceAttributeValue(INHElement element, IXmlAttribute attribute) { if (attribute.Value == null) return; ReferenceParser parser = new ReferenceParser(); IXmlAttributeValue newElement = parser.ParseReferenceType(attribute.Value, null); ReplaceAttributeValue(attribute, newElement); }