codaxy / xsd2

Improved version of xsd.exe
MIT License
34 stars 21 forks source link

Nullable property UpperCase name #1

Closed bajicdusko closed 11 years ago

bajicdusko commented 11 years ago

When creating nullable property in xsd, property name must start as lowerCase. Otherwise property wont be generated, as nullable.

xs:attribute type="xs:dateTime" name="startDate" use="optional" generates public Nullable StartDate { get; set; }

xs:attribute type="xs:dateTime" name="StartDate" use="optional" generates public Nullable StartDate { get; set; }

mstijak commented 11 years ago

Fixed