12

有没有人真正发布了一个实体框架项目,该项目将 O/R 映射到与数据存储中的表完全不同的概念类?

我的意思是将连接 (M:M) 表折叠到其他实体中,以形成存在于业务域中但在数据存储中组织为多个表的概念类。我在 MSDN 上看到的所有示例都很少使用继承、将联结表折叠成其他实体或将查找表折叠成实体。

我很想听听或查看以下示例,这些示例支持您通常希望在业务对象上执行的所有 CRUD 操作。:

  1. 车辆表和颜色表。一种颜色可以出现在许多车辆中 (1:M)。它们形成了具有属性 Color 的概念类 UsedCar。

  2. Doctor、DoctorPatients 和 Patients 表(形成多对多)。医生有很多患者,患者可以有很多医生(M:M)。绘制出两个概念类Doctor(具有Patients 集合)和Patients(具有Doctors 集合)。

有人在实体框架中使用 CSDL 和 SSDL 看到/做过这个吗?如果 CSDL 没有实际映射到任何东西,它就不好了!

4

3 回答 3

5

我尝试在现有项目(约 60 个表,3 个具有继承性)上使用实体框架,只是为了了解它的全部内容。我的经验归结为:

设计师的表面很笨拙。映射不直观,一定有人认为同时打开多个工具窗口是可以接受的。手动创建一个对象并映射正确的字段需要很长时间——然后从代码中与它交谈仍然很奇怪。虽然有一些东西来处理数据库通信是必不可少的,但我觉得将控制权交给 EF 比手动完成要困难得多

有时,在您重新启动 Visual Studio 之前,设计器不会加载。我确定这只是一个错误,但重新启动 VS 很烦人。

你所有的工作最终都在一个文件中,我不想合并多个开发者版本。

生成的 SQL(通过 Profiler 观察)不是很好。我并没有真正深入研究原因,但你会被迫在第一次尝试时写出更糟糕的东西。

于 2008-09-12T01:49:31.587 回答
3

实体框架 - 不信任投票

这就是我要说的...

于 2008-09-18T01:17:55.293 回答
2

你的意思是这样吗?

<edmx:ConceptualModels>
  <Schema xmlns="http://schemas.microsoft.com/ado/2006/04/edm" Namespace="Model1" Alias="Self">
    <EntityContainer Name="Model1Container" >
      <EntitySet Name="ColorSet" EntityType="Model1.Color" />
      <EntitySet Name="DoctorSet" EntityType="Model1.Doctor" />
      <EntitySet Name="PatientSet" EntityType="Model1.Patient" />
      <EntitySet Name="UsedCarSet" EntityType="Model1.UsedCar" />
      <AssociationSet Name="Vehicle_Color" Association="Model1.Vehicle_Color">
        <End Role="Colors" EntitySet="ColorSet" />
        <End Role="Vehicles" EntitySet="UsedCarSet" /></AssociationSet>
      <AssociationSet Name="DoctorPatient" Association="Model1.DoctorPatient">
        <End Role="Doctor" EntitySet="DoctorSet" />
        <End Role="Patient" EntitySet="PatientSet" /></AssociationSet>
      </EntityContainer>
    <EntityType Name="Color">
      <Key>
        <PropertyRef Name="ColorID" /></Key>
      <Property Name="ColorID" Type="Int32" Nullable="false" />
      <NavigationProperty Name="Vehicles" Relationship="Model1.Vehicle_Color" FromRole="Colors" ToRole="Vehicles" /></EntityType>
    <EntityType Name="Doctor">
      <Key>
        <PropertyRef Name="DoctorID" /></Key>
      <Property Name="DoctorID" Type="Int32" Nullable="false" />
      <NavigationProperty Name="Patients" Relationship="Model1.DoctorPatient" FromRole="Doctor" ToRole="Patient" /></EntityType>
    <EntityType Name="Patient">
      <Key>
        <PropertyRef Name="PatientID" /></Key>
      <Property Name="PatientID" Type="Int32" Nullable="false" />
      <NavigationProperty Name="Doctors" Relationship="Model1.DoctorPatient" FromRole="Patient" ToRole="Doctor" />
      </EntityType>
    <EntityType Name="UsedCar">
      <Key>
        <PropertyRef Name="VehicleID" /></Key>
      <Property Name="VehicleID" Type="Int32" Nullable="false" />
      <NavigationProperty Name="Color" Relationship="Model1.Vehicle_Color" FromRole="Vehicles" ToRole="Colors" /></EntityType>
    <Association Name="Vehicle_Color">
      <End Type="Model1.Color" Role="Colors" Multiplicity="1" />
      <End Type="Model1.UsedCar" Role="Vehicles" Multiplicity="*" /></Association>
    <Association Name="DoctorPatient">
      <End Type="Model1.Doctor" Role="Doctor" Multiplicity="*" />
      <End Type="Model1.Patient" Role="Patient" Multiplicity="*" /></Association>
    </Schema>
</edmx:ConceptualModels>
于 2008-09-12T02:20:10.123 回答