I discovered the following:
The problem is in the missing Global.asax in the Web Project generated by the "Silverlight Navigation Application"-Template that I used. In an application generated with the DefForce-Template you get a Global.asax with the following lines in it;
protected void Application_Start(Object sender, EventArgs e) {
System.Web.Hosting.HostingEnvironment.RegisterVirtualPathProvider(new IdeaBlade.EntityModel.Web.ServiceVirtualPathProvider());
}
I then made a copy of the Global.asax and included it in my project. For some reason he does not recoginze the IdeaBlade namespace.
I checked all referenced libraries and they are all the same.
Any idea what I am missing?
Markus Seeli