We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When you have a sequence without a surrounding element, the name of the XSD class is used, for example
<House> <Person Name="Mum"/> <Person Name="Dad"/> <Person Name="Son"/> <Person Name="Daughter"/> <Object Name="Bed"/> <Object Name="Sofa"/> <Object Name="Table"/> <Object Name="Bath"/> </House>
Would generate 2 C# collections, but they will be called Person and Object rather than People and Objects
Person
Object
People
Objects
If we could specify a custom xsd attribute to override the name of this sequence collection, or embed it in a comment, that would be much better.
The text was updated successfully, but these errors were encountered:
This is similar to #159.
Sorry, something went wrong.
No branches or pull requests
When you have a sequence without a surrounding element, the name of the XSD class is used, for example
Would generate 2 C# collections, but they will be called
Person
andObject
rather thanPeople
andObjects
If we could specify a custom xsd attribute to override the name of this sequence collection, or embed it in a comment, that would be much better.
The text was updated successfully, but these errors were encountered: