Is possible mapping vector types on nhibernate?
I have a property like this...
string[] myDesc
and I would map every vector value to a specific column of my table...for example:
myDesc[0] --> myDbColumn01
myDesc[1] --> myDbColumn02
myDesc[2] --> myDbColumn03
...
Is there any way to do it?