File tree 2 files changed +142
-127
lines changed
NHibernate/Cfg/MappingSchema
2 files changed +142
-127
lines changed Original file line number Diff line number Diff line change @@ -36,10 +36,25 @@ private void ChangeDeclaredTypeNames()
36
36
string rootElementName = GetRootElementName ( type ) ;
37
37
string newTypeName = GetNewTypeName ( type . Name , rootElementName ) ;
38
38
changedTypeNames [ type . Name ] = newTypeName ;
39
+
40
+ if ( string . IsNullOrEmpty ( rootElementName ) )
41
+ AddRootElementName ( type ) ;
42
+
39
43
type . Name = newTypeName ;
40
44
}
41
45
}
42
46
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
+
43
58
private void UpdateTypeReferences ( )
44
59
{
45
60
foreach ( CodeTypeDeclaration type in code . Types )
@@ -91,7 +106,7 @@ private void UpdateFieldTypeReferences(CodeMemberField field)
91
106
else if ( attribute . Name == typeof ( DefaultValueAttribute ) . FullName )
92
107
{
93
108
CodeFieldReferenceExpression reference = attribute . Arguments [ 0 ] . Value
94
- as CodeFieldReferenceExpression ;
109
+ as CodeFieldReferenceExpression ;
95
110
96
111
if ( reference != null )
97
112
UpdateTypeReference ( ( ( CodeTypeReferenceExpression ) reference . TargetObject ) . Type ) ;
You can’t perform that action at this time.
0 commit comments