I downloaded and installed 6.1.1 and then rebuilt the project. After regenerating the EntityManagers, it comes up with this build error: Error 1 Type 'Jet.Models.EntityRelations' already defines a member called 'EntityRelations' with the same parameter types D:\Clients\Jet\Jet\Jet.Web\Models\EmailEntityManager.IB.Designer.cs 4969 12 Jet.Web
I think the issue is that I have two entity managers in the same namespace. Thus after the codegen, there are two identical EntityRelation classes.
If I manually remove one of them, then it builds fine.
The second issue is that Global.asax comes up with the following error:
Error 1 The type or namespace name 'IdeaBlade' could not be found (are you missing a using directive or an assembly reference?) d:\Clients\Test\SilverlightApplication4\SilverlightApplication4Web\Global.asax 15 77 SilverlightApplication4Web
on this line:
System.Web.Hosting.
HostingEnvironment.RegisterVirtualPathProvider(new IdeaBlade.EntityModel.Web.ServiceVirtualPathProvider());
This occurs on my main project as well as a test projectthat I fired up to see if it produces the same issue. IdeaBlade.EntityModel.Web is referenced in the project, so I don't understand why it wouldn't find it.
Greg