Is there a way to do, in code, what is done when creating an object context under add New Item --> Entity Data Model in visual studio?
Lets say for instance I add a new table to my database. Next time I load the application that uses a model of that database, it refreshes the model and creates a default conceptual mapping for that new table automatically.
I would probably be using ESQL to query the database rather than LINQ-To-Entities, so I dont care if there is strongly typed access to the new Entity Sets / Objects.
Also, would this solution require EF code first?