我正在用Fluent Nhibernate编写类的映射:
public class UniqueFeaturesSet : IEntity
{
public UniqueFeaturesSet(List<List<double>> mfcc)
{
MFCC = mfcc;
}
public virtual List<List<double>> MFCC { get; set; }
public virtual int Id { get; set; }
}
如何映射List<List<double>>
?
答案 0 :(得分:1)
无法使用[Fluent] [N] Hibernate映射嵌套集合。内部集合需要属于自己的类。