0

I'm working on a project that uses ADO.NET entity framework as the ORM framework for getting data in and out the database. This all works great, but there's one association that I don't want to map. At least I don't want the developers to navigate from Product to OrderItem using the association between them.

Has anyone tried this scenario before I knows whether this will work and how I can model this into my domain-model?

Willem Meints
  • 1,152
  • 14
  • 33

1 Answers1

0

In EF 1 you can remove the relationship from the client schema in the EDMX and it will work fine, but I think it confuses the GUI designer. I believe this is fixed in the EF 4 designer.

Craig Stuntz
  • 125,891
  • 12
  • 252
  • 273