Select from following answers:- Create classes that have the same name as the corresponding entity type. Create properties that have the same name as entity type property names.

- Create classes that have the same name as the corresponding database table. Create properties that have the same name as column names.
- Create classes with names that use the model name as a prefix followed by the corresponding entity type name ("AdventureWorksModelOrder"). Create properties that have the same name as entity type property names.
- All Above
The Entity Framework enables you to use your own custom data classes. Define a set of POCO types that are implicitly mapped, by having the same type and property names, to the data model entity types. This is the correct convention.
Do not create classes that have the same name as the corresponding database table. This is not the correct convention and classes will not map.
Show Correct Answer
Source: MeasureUp.Com | |
Alert Moderator