区分存储模型和概念模型字段名称(实体框架)

发布于 2024-07-25 10:10:41 字数 545 浏览 4 评论 0原文

我遇到的每个示例在存储模型中的实体和属性的命名与概念模型中的命名完全相同。 因此,在映射部分,我无法判断实体或属性是来自存储模型还是概念模型。

这是实体框架图的片段。 哪些“ID”字段来自数据库,哪些来自实体?

<AssociationSetMapping Name="FK_Orders_Customers" TypeName="ContosoModel.FK_Orders_Customers" StoreEntitySet="Order"> 
  <EndProperty Name="Customer">
    <ScalarProperty Name="ID" ColumnName="CustomerID" />
  </EndProperty>
  <EndProperty Name="Order">
    <ScalarProperty Name="ID" ColumnName="ID" />
  </EndProperty>
</AssociationSetMapping>

Every sample I come across has the entities and properties in the storage model named exactly the same as in the conceptual model. So in the mapping section, I can't tell whether an entity or property is from the storage model or conceptual model.

This is a snippet of an Entity Framework diagram. Which "ID" fields are from the database and which are from the entities?

<AssociationSetMapping Name="FK_Orders_Customers" TypeName="ContosoModel.FK_Orders_Customers" StoreEntitySet="Order"> 
  <EndProperty Name="Customer">
    <ScalarProperty Name="ID" ColumnName="CustomerID" />
  </EndProperty>
  <EndProperty Name="Order">
    <ScalarProperty Name="ID" ColumnName="ID" />
  </EndProperty>
</AssociationSetMapping>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月寒剑心 2024-08-01 10:10:41

只有数据库才有列,因此 ColumnName 是数据库名称。
名称来自实体(或在本例中为协会)。

希望这可以帮助
亚历克斯

Well only databases have Columns, so ColumnName is the Database Name.
Name is from the Entity (or in this case the Association).

Hope this helps
Alex

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文