When creating a MVC code first application, you needed to place the following line in your global.asax file
Database.SetInitializer<DBNAME>(new DBNAMEInitializer());
I now want to do the same with a Silverlight Navigation Application… Where can I place that line then?
The same place. Then you create a WCF service to expose the data and a service proxy in a Silverlight application.