Visual studio ORM designer option
- by stackoverflowuser
linq to sql visual studio Object-Relational designer generates C# entity class names same as the table names (except pluralizing it).
so if the table name is authors it generates entity class with name "author". If the table name is Customers it generates class with name "Customer". Is there any option that can be set to
make the designer generate entity class names as pascal cased.
I am using VS 2010 if that makes any difference. Thanks.