InterviewSolution
| 1. |
Explain what the .edmx file contains. |
|
Answer» First of all, a database LETS you reverse engineer a model from an existing database. Entity Framework Designer is used to view and EDIT models stored and created in EDMX files (.edmx extensions). Using the EDMX file, you automatically generate classes that you can INTERACT with within your application. EDMX files represent conceptual models, storage models, and their mappings. This file contains all the mapping information between SQL tables and objects. In addition, it also includes essential information required for rendering models graphically with ADO.NET Entity Data Designer. Furthermore, it is divided into three divisions, CSDL, MSL, and SSDL. |
|