Skip to content

Commit 0075808

Browse files
author
Jim Bolla
committed
Updated HbmXsd tool to add root element name to generated classes, if missing.
SVN: trunk@2933
1 parent f3f915b commit 0075808

File tree

2 files changed

+142
-127
lines changed

2 files changed

+142
-127
lines changed

src/NHibernate.Tool.HbmXsd/ImproveTypeNamesCommand.cs

+16-1
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,25 @@ private void ChangeDeclaredTypeNames()
3636
string rootElementName = GetRootElementName(type);
3737
string newTypeName = GetNewTypeName(type.Name, rootElementName);
3838
changedTypeNames[type.Name] = newTypeName;
39+
40+
if (string.IsNullOrEmpty(rootElementName))
41+
AddRootElementName(type);
42+
3943
type.Name = newTypeName;
4044
}
4145
}
4246

47+
private static void AddRootElementName(CodeTypeMember type)
48+
{
49+
foreach (CodeAttributeDeclaration attribute in type.CustomAttributes)
50+
if (attribute.Name == typeof (XmlRootAttribute).FullName)
51+
{
52+
CodePrimitiveExpression value = new CodePrimitiveExpression(type.Name);
53+
CodeAttributeArgument argument = new CodeAttributeArgument("", value);
54+
attribute.Arguments.Insert(0, argument);
55+
}
56+
}
57+
4358
private void UpdateTypeReferences()
4459
{
4560
foreach (CodeTypeDeclaration type in code.Types)
@@ -91,7 +106,7 @@ private void UpdateFieldTypeReferences(CodeMemberField field)
91106
else if (attribute.Name == typeof (DefaultValueAttribute).FullName)
92107
{
93108
CodeFieldReferenceExpression reference = attribute.Arguments[0].Value
94-
as CodeFieldReferenceExpression;
109+
as CodeFieldReferenceExpression;
95110

96111
if (reference != null)
97112
UpdateTypeReference(((CodeTypeReferenceExpression) reference.TargetObject).Type);

0 commit comments

Comments
 (0)