gpt4 book ai didi

c# - 如何使用 fluent nhibernate 创建引用表

转载 作者:太空宇宙 更新时间:2023-11-03 14:29:58 25 4
gpt4 key购买 nike

我如何从以下模型类创建 3 表架构。

public class Product
{
public int Id {get; set;}
public string Name {get; set;}
public IList<Photo> Photos {get; set;}
}

public class Photo
{
public int Id {get; set;}
public string Path {get; set;}
}

我想在数据库中创建如下表结构:

Product
-------
Id
Name

ProductPhotos
-------------
ProductId (FK Products.Id)
PhotoId (FK Photos.Id)

Photos
------
Id
Path

我如何使用 Fluent NHibernate 表达上述数据库架构?我只能管理以下映射,但这并不能使我获得第三张照片引用表。

public class ProductMap : ClassMap<Product>
{
public ProductMap()
{
Id(x => x.Id);
Map(x => x.Name);
Table("Products");
HasMany(x => x.Photos).Table("ProductPhotos").KeyColumn("ProductId");
}
}

最佳答案

您还必须为照片实体创建一个类映射。

关于c# - 如何使用 fluent nhibernate 创建引用表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2887344/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com