开发者

Fluent nHibernate and mapping IDictionary<DaysOfWeek,IDictionay<int, decimal>> how to?

开发者 https://www.devze.com 2022-12-26 02:49 出处:网络
I have problem with making mapping of classes with propert of type Dictionary and value in it of开发者_C百科 type Dictionary too, like this:

I have problem with making mapping of classes with propert of type Dictionary and value in it of开发者_C百科 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:

Id(i => i.Id);
HasMany(m => m.Class1Dictionary);

This doesn't work. The important thing I want have everything in one table not in two. WHet I had maked class from this second IDictionary I heve bigger problem. But first I can try like it is now.


It's not currently possible to use nested collections of any type in NHibernate.

Instead, you should define your property as follows:

public virtual IDictionary<DayOfWeek, Class2> Class1Dictionary { get; set; }

And add a new class:

public class Class2
{
    public virtual decimal this[int key]
    {
        get { return Class2Dictionary[key]; }
        set { Class2Dictionary[key] = value; }
    }

    public virtual IDictionary<int, decimal> Class2Dictionary { get; set; }
}

This way, you can map both classes and dictionaries normally, and still access your dictionary as:

class1Instance.Class1Dictionary[DayOfWeek.Sunday][1] = 9.4
0

精彩评论

暂无评论...
验证码 换一张
取 消