Visual studio ORM designer option
Posted
by stackoverflowuser
on Stack Overflow
See other posts from Stack Overflow
or by stackoverflowuser
Published on 2010-05-21T21:44:42Z
Indexed on
2010/05/21
21:50 UTC
Read the original article
Hit count: 296
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.
© Stack Overflow or respective owner