将一个类映射到具有类型/项目的多个类

发布于 2024-12-26 05:37:47 字数 557 浏览 3 评论 0原文

我的问题是我有父类,并且对于每个父类我都有 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 技术交流群。

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

发布评论

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

评论(1

电影里的梦 2025-01-02 05:37:47
class ComputerMap : ClassMap<Computer>
{
    public ComputerMap()
    {
        HasMany(x => x.Images)
            .Where("type = 1")
            .KeyColumn("item")
            .Inverse()
            .Cascade.All();
    }
}

class WorkerMap : ClassMap<Worker>
{
    public WorkerMap()
    {
        HasMany(x => x.Images)
            .Where("type = 2")
            .KeyColumn("item")
            .Inverse()
            .Cascade.All();
    }
}

class ImageMap : ClassMap<Image>
{
    public WorkerMap()
    {
        ReferencesAny(x => x.Item)
            .EntityIdentifierColumn("item")
            .EntityTypeColumn("type")
            .AddMetaValue<Computer>(1)
            .AddMetaValue<Worker>(2)
            .IdentityType<int>();     <-- maybe optional
    }
}

// in Computer and Worker have this
public void AddImage(Image image)
{
    this.Images.Add(image);
    image.Item = this
}
class ComputerMap : ClassMap<Computer>
{
    public ComputerMap()
    {
        HasMany(x => x.Images)
            .Where("type = 1")
            .KeyColumn("item")
            .Inverse()
            .Cascade.All();
    }
}

class WorkerMap : ClassMap<Worker>
{
    public WorkerMap()
    {
        HasMany(x => x.Images)
            .Where("type = 2")
            .KeyColumn("item")
            .Inverse()
            .Cascade.All();
    }
}

class ImageMap : ClassMap<Image>
{
    public WorkerMap()
    {
        ReferencesAny(x => x.Item)
            .EntityIdentifierColumn("item")
            .EntityTypeColumn("type")
            .AddMetaValue<Computer>(1)
            .AddMetaValue<Worker>(2)
            .IdentityType<int>();     <-- maybe optional
    }
}

// in Computer and Worker have this
public void AddImage(Image image)
{
    this.Images.Add(image);
    image.Item = this
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文