When i map columns from the inspected table, i do this:

<property name="InstanceName" type="MyNameUserType, MyApp.MyNamespace">
   <column name="Name"/>
   <column name="Name2"/>
</property>

How can I make property mapping initialize a UserType with data retrieved by the formula's sql query?

<property name="InstanceName" type="MyNameUserType, MyApp.MyNamespace" formula="(...)"/>

fails with an exception "wrong number of columns".

Thanks in advance!

link|improve this question

25% accept rate
feedback

1 Answer

MyUserNameType should be a class level mapping so that you can map the result of the SQL function to a class. See these two posts for some possible help:

  1. Class and SQL Function example: http://thoughtspam.spaces.live.com/blog/cns!253515AE06513617!478.entry

  2. NHibernate Mapping with formula mapping example: http://thoughtspam.spaces.live.com/blog/cns!253515AE06513617!477.entry

link|improve this answer
thanks for your answer. i've tried the way you provided in post2 but it gave me nothing. looks like the UserType just doesn't see any column of the resulting dataset :( – npeBeg Dec 3 '09 at 11:42
2  
The posted link are not working for me. – Christopher Bennage Jan 1 '11 at 1:25
1  
This post is over a year old. I do not control the internets. Way to use that first down vote! – Michael Gattuso Jan 1 '11 at 13:40
Links are dead. – TigerShark Feb 17 at 12:00
2  
This is why answers should contain the information needed and link to the other site as a 'source', instead of just linking to another site. – George Stocker Apr 2 at 16:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.