Hi,
On a property column I can set the sql-type like this:
Code:
<property name="xxx" access="property" type="System.Byte[]">
<column name="xxx" sql-type="VARBINARY(MAX)"/>
</property>
How can I achieve the same on a dictionary/map?
This gives me a VARBINARY(8000) and there is no sql-type attribute on <element>:
Code:
<map name="xxxMap" access="property" table="xxxTable" lazy="true">
<key column="Id" />
<index column="KeyValue" type="Int32" />
<element column="Value" type="System.Byte[], mscorlib" /> </map>
Thanks!