InterviewSolution
| 1. |
Explain What Does .edmx File Contains? |
|
Answer» .edmx file is an XML file, which declares a CONCEPTUAL model, a storage model and the mapping between these models. This file also consists the information that is used by ADO.NET entity data model designer to render a model graphically. It consists of all the mapping details of how OBJECT maps with SQL tables. It is DIVIDED into three CATEGORIES SSDL, CSDL, and MSL. .edmx file is an XML file, which declares a conceptual model, a storage model and the mapping between these models. This file also consists the information that is used by ADO.NET entity data model designer to render a model graphically. It consists of all the mapping details of how object maps with SQL tables. It is divided into three categories SSDL, CSDL, and MSL. |
|