我有实体房子,除了图像的其他属性列表之外。每张图片都将作为单个动作上传,使用 js 裁剪技术一张一张地上传。
更新: 所以一所房子可以有很多图像。
public House
{
public Guid Id {get; set;}
....
List<Image> Images {get; set;}
}
public class Images
{
public House House {get; set;}
public string Path {get;set;}
public string Name {get;set;}
public string Description {get;set;}
}
我的数据库表如下:
House
Id
Name, ...
On this side I don't have relation to the Image table
Image table
Id
HouseId
Path
Name
Description
这种方法可以吗?如何使用 nhibernate orm 映射这些对象?
谢谢