I have 3 Projects. A, B and X
Project X is a class library and holds my EntityFramework EDMX Database Model. Project X is referenced in Project A. I want to use Project A and Project X in Project B.
I found out that is a bit more complicated: I have 4 Projects. A, B, C and X
Project X is a class library and holds my EntityFramework EDMX Database Model. Project A is a Silverlight Project. Project B is a SilverlightApplication.Web Project. Project C is a class library project.
Project X is referenced in Project B. Project A has Project B as reference. Project B is auto generated in Project A. Project C should reference Project A, B and X.
Error Message: "The Type "ProjectX.Location" exists in both "D:\Projectgroup\ProjectA\bin\ProjectA.dll" and "D:\Projectgroup\ProjectX\bin\ProjectX.dll"
When I look in the auto generated code of project B in Project A, I see some classes of the DatabaseModel (edmx) of Project X, but not all, which are in the namespace of Project X.