Hi there,
I have a simple Dictionary<string, string> that is mapped successfully as follows:
Code:
<map name="Properties" table="EntityProperty" >
<key column="EntityID"/>
<index column="Title" type="System.String"/>
<element column="Value" type="System.String"/>
</map>
Everything works fine, however I want to export the schema which obviously doesn't include the non-mentioned surrogate primary key; EntityPropertyID. How can I include this in the mapping, much as I would for an idbag?
Many thanks in advance, CArl