I am building my application using s#arp lite framework. One of my tables is called User
. But User
is a SQL Server 2008 keyword, so it gives me problems.
I tried to modify the code to support tables using SQL Server keywords, butcouldn't get it to work.
Here's the code.
Line 32: I changed it to following code
classCustomizer.Table("[" + Inflector.Net.Inflector.Singularize(type.Name.ToString()) + "]");