如何使用 FluentNHibernate 映射字典?
IDictionary<SomeEnum, bool>
和..
IDictionary<string, bool>
?
像:
public class SomeClass
{
public int Id {get;set;}
public IDictionary<SomeEnum, bool> Dictionary2 {get;set;}
public IDictionary<string, bool> Dictionary1 {get;set;}
}