InterviewSolution
Saved Bookmarks
| 1. |
Which according to you is considered the best approach in Entity Framework? |
|
Answer» It is IMPOSSIBLE to define one approach as the OPTIMAL approach when using the Entity Framework. Project requirements and the type of project determine which development approach should be USED. Database First is a good approach if there is a database present. Model First is the optimal choice if no database and model classes EXIST. As long as the domain classes are available, the Code First method is the BEST choice. |
|