a.gogolev wrote:
ovidius wrote:
In the entity.hbm.xml file i setted the property like this:
Code:
<property name="AccountType" column="AccountType" type="String" access="Test3.DAL.EntityAccessor"/>
type attribute value should be an assembly-qualified type name, that is something like:
Code:
type="Test3.DAL.EntityAccessor, Test3.DAL"
(I'm assuming
Test3.DAL for the name of the assembly).
The problem was not solved.
The error message always is the same:
"Could not interpret type: Test3.DAL.EntityAccessor, Test3.DAL".
gogolev, are you sure i must change the type attribute and not the access attribute?
Thanks a lot.