Menu

#16 Small bug in CsGenerator class

v1.0 (example)
open
nobody
None
5
2013-05-26
2013-05-26
agamia
No

Thanks for your wonderful tool.

I've found a small bug near line 182 of the file CsGenerator.cs

streamWriter.WriteLine("\t\t\tthis." + Utility.FormatCamel(column.Name) +
" = " + Utility.FormatCamel(column.Name) + ";");

but it should be:
streamWriter.WriteLine("\t\t\tthis." + Utility.FormatPascal(column.Name) +
" = " + Utility.FormatCamel(column.Name) + ";");

Discussion


Log in to post a comment.