I'm using Subsonic 3 (Active Record), VS2010, Framework 3.5 against a MySQL database. Someone named a column "string." I S@*t you not.
OK, I've named some database objects some dumb names (Like naming a SQL Server table "User") before but... c'mon! And I cannot change the table because of dependencies in the app!
OK I feel a little better now that I've vented a little thanks for listening
So, of course, in the generated code I get errors all over the place from lines like:
private string string {}
I don't see this as a priority bug for Subsonic unless others are having similar issues with other column names. Any plans to do anything about this?
Thanks
Paul
p.s. I will try to talk the other developers into changing, or allowing me to change the column name, I know that is the real solution, but Subsonic could gracefully handle illegal names, maybe something like the way .netTiers handles it (add _safeName to the name, so it would become string_safeName).