Hi!
Does anyone know how to map a hashtable (IDictionary) that has a collection of enumerators inside the value column?
What I'm trying to do is something like the code below, but the problem is "one-to-many" tag doesn't have "type" attribute. I can't do it using "one-to-many class='MyClass'" because it's not possible to map an Enum.
Can someone help-me, please?
<map name="MyHash" table="TABLE" />
<key column="FK" />
<index-many-to-many column="ID_KEY" class="ObjectModel.KeyClass" />
<one-to-many type="ObjectModel.MyEnum" />
</map>
|