Fluent nHibernate and mapping IDictionary<DaysOfWeek,IDictionay<int, decimal>> how to?
- by JS Future Software
Hello,
I have problem with making mapping of classes with propert of type Dictionary and value in it of type Dictionary too, like this:
public class Class1
{
public virtual int Id { get; set; }
public virtual IDictionary<DayOfWeek, IDictionary<int, decimal>> Class1Dictionary { get; set; }
}
My mapping looks like this:…