New Table to an existing Silverlight project
WPF
1
Posts
1
Posters
0
Views
1
Watching
-
I have created a SilverLight application that uses ADO and DomainServices to populate a DataGrid from an SQL 2008 database server. The context looks like this EcDomainContext context1 = new EcDomainContext(); A few months later, I added a table to the database so in order to use this new table, I had to rebuild as follows: -deleted all MyDomainServices (.cs) files -deleted the Mymodel (.edmx) file -recreate by adding the ADO and Domainservices again -reconfigure the MyDomainServices.cs as before. Well, I just added another table and I would like to know if there is an easier way to do this? Many thanks. Ps