I have an asp.net web Application. I have added Entity Data Model in the App_Code folder, that generates the following files :
Model.Context.ttModel.edmxModel.tt
In Model.tt there is Model.cs file, that contains Partial classes of selected tables.
Now when I try to update the .edmx file to add a new table, Model.cs is not getting updated, it does not add the new class for newly added table.
How to update Model.cs file when any new table or update existing table in Model.edmx ?
Thanks