hamish-milne / EdmxToEfCore

Self-contained EDMX code generator targeting Entity Framework Core
MIT License
5 stars 0 forks source link

XmlModel MaxLength and FixedLength types #1

Closed richardv closed 5 years ago

richardv commented 5 years ago

In the Edmx TypeBase class you have both MaxLength and FixedLength as ints. In this extract from my edmx, MaxLength is the string "Max" from an nvarchar(max), and FixedLength is a bool. <Property Name="Description" Type="String" Nullable="false" MaxLength="Max" FixedLength="false" Unicode="true" />

hamish-milne commented 5 years ago

Fixed with #2 . Thank you very much for the contribution!