With a legacy database (and strict orders not to modify it) and using Entity framework I have the following:

MODELS

public class EntityObjectA 
{
    public Guid Id { get; set; }
    public string Name { get; set;}
    ....
    public virtual ICollection<EntityObjectB> ObjectBList { get; set; } 
}

public class EntityObjectB 
{
    public Guid Id { get; set; }
    public string Name { get; set;}
    ....
    public virtual ICollection<EntityObjectA> ObjectAList { get; set; } 
}

public class EntityObjectC 
{
    public Guid Id { get; set; }
    public string Name { get; set;}
    public Int Value { get; set; }
}

TABLES

TableForObjectA
  ID
  Name

TableForObjectB
  ID
  Name

JoinTable1
  ID
  TableForObjectA_ID
  TableForObjectB_ID


JoinTable2
  ID
  JoinTable1_ID
  TableForObjectC_ID

TableForObjectC
  ID
  Name
  Value

The end goal is to be able to read values in EntityObjectC using EntityObjectA as the start of the relationship.

I've tried many different combinations of mappings in the DataContext class(not listed above), but they all return on of many different "mapping" errors.

Any ideas how to work this since I cannot trash the database and start form scratch?

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.