can anyone tell me which function is responsible for generating the .edmx file while using database first approach ? i am trying to modify the .edmx file when it is generated and exclude some columns from it.
Asked
Active
Viewed 39 times
0
-
1thats part of visual studio. – Daniel A. White Oct 30 '18 at 14:41
-
1And can't you set a property on the COlumns to exclude? – bommelding Oct 30 '18 at 14:41
-
i want to exclude properties as if they don't exists in database. – Satyendra Routela Oct 30 '18 at 14:44
-
please check is question for clearification : https://stackoverflow.com/q/53063836/4998968 – Satyendra Routela Oct 30 '18 at 14:44
2 Answers
0
The ADO.NET Entity Data Model Designer (Entity Designer) uses the Update Model Wizard to update an .edmx file from changes made to the database. Please see the following link for more information about changes made to an .edmx file: Changes Made to an .edmx File by the Update Model Wizard.

ArthurAkhmerov
- 159
- 2
- 5
0
in case anyone looking for the same.
edmGen.exe is responsible for generating the .edmx in database first approach.
file location: "C:\windows\Microsoft.NET\Framework\v4.0.30319\edmgen.exe"

Satyendra Routela
- 59
- 7