如何从以下模型类创建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表达上述数据库模式?我只能管理以下的映射,但这不会让我得到第3张照片参考表。
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");
}
}
答案 0 :(得分:1)
您还必须为照片实体创建一个类图。