将一个类映射到具有类型/项目的多个类
我的问题是我有父类,并且对于每个父类我都有 B 类列表。 例如,这些表是:
图像
id
type
item
filename
计算机
id
owner
age
工人
id
name
age
我们有每台计算机和工人的许多图像。在计算机和工人类别中,我们有图像列表。对于计算机,图像项目是:
id=auto generate
type=1
item= id of computer
对于工人,图像项目是:
id=auto generate
type=2
item=id of worker
类应该是: 电脑: -ID -年龄 -所有者 -图像 工人: -ID -年龄 -姓名 -图像
关于图像,我不确定我需要什么,但类似这样的东西: -ID -文件名 (可选,如果映射需要的话) -类型 - 项目
一些想法如何映射?
My problem is that i have parent classes, and for each of the parents i have list of classB.
for example, the tables are:
Images
id
type
item
filename
computers
id
owner
age
workers
id
name
age
we have many images for every computer and worker. in the classes of computer and worker we have list of images. for the computers the image items are:
id=auto generate
type=1
item= id of computer
for the workers the image items are:
id=auto generate
type=2
item=id of worker
The classes should be:
Computers:
-id
-age
-owner
-images
Workers:
-id
-age
-name
-images
About the image, i dont sure what do i need but something like that:
-id
-filename
(optional, if it needed by the mapping)
-type
-item
some idea how to map that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)