0
votes

I am writing mapping for the class with 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; }
    }

How to map List<List<double>> ?

1
No idea why this gets down-voted. It's probably a duplicate, I have this question already answered somewhere else. - Stefan Steinegger

1 Answers

1
votes

It is not possible to map nested collections with [Fluent][N]Hibernate. The inner collection needs to be in an own class.