0

我正在使用 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>>

4

1 回答 1

1

无法使用 [Fluent][N]Hibernate 映射嵌套集合。内部集合需要在自己的类中。

于 2012-06-04T07:47:38.407 回答