.net - Anyone using the Entity Framework *Well*? -
has shipped entity framework project o/r mapping conceptual classes quite different tables in datastore? i mean collapse junction (m:m) tables other entities form conceptual classes exist in business domain organized multiple tables in datastore. examples see on msdn have little use of inheritance, collapsing junction tables other entities, or collapsing lookup tables entities. i'd love hear of or see examples of below support crud operations typically expect on business object.: vehicle table , color table. color can appear in many vehicles (1:m). form conceptual class usedcar has property color. doctor, doctorpatients, , patients tables (form many many). doctors have many patients, patients can have many doctors (m:m). map out 2 conceptual classes doctor (which has patients collection) , patients (which has doctors collection). anyone seen/done csdl , ssdl in entity framework? csdl no if doesn't actaully map anything! i attempted use entity framewo...