外键约束的单独类?

发布于 2024-10-28 12:02:31 字数 297 浏览 0 评论 0原文

对于具有字段的示例对象

Books
-----
ID
AuthorID
Quantity
ISBN
PublisherID

2 个外键约束对应于作者姓名和字段。其他 2 个表中的发布者名称。

  1. 为了在列表视图中查看所述对象,是否建议在同一个类中创建 2 个附加字段(AuthorName、PublisherName),或者创建一个具有 2 个字段的单独对象并从 Books 类继承其他字段?
  2. 企业应用内部的此类场景遵循什么标准?

达米安.

For an example object with fields

Books
-----
ID
AuthorID
Quantity
ISBN
PublisherID

The 2 foreign key constraints correspond to Author Name & Publisher Name from 2 other tables.

  1. For viewing the said object in a listview, is it recommended to create 2 additional fields (AuthorName,PublisherName) inside the same class or to create a separate object with 2 fields and inherit other fields from the Books class ?
  2. What is the standard to follow for such scenarios inside enterprise applications ?

Damien.

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

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

发布评论

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

评论(1

ぇ气 2024-11-04 12:02:31

我同意这种观点:不查询对象模型。

您的问题立即消失:)

会做的是使用一个简单的查询层来返回我需要的数据。事实上,我更喜欢非规范化查询存储,如果不可能,我将尝试在执行插入/更新时对我正在查询的表进行非规范化,作为最后的手段,我将使用联接。

您可能想看看 CQRS。

I subscribe to the school of thought that you do not query an object model.

Your problem immediately evaporates :)

What I would do is use a simple query layer to return the data I need. In fact, I prefer a denormalized query store and if that isn't possible I will try to denormalize the table I am querying when doing inserts/updates and as a last resort I will use a join.

You may want to take a look at CQRS.

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