Hi!
I've alread got an error using my own type (an implementation of IUserType). This error is here:
http://forum.hibernate.org/viewtopic.ph ... 4bcf686a70
Now I'm getting the same error but I've done the same to solution, but it stills with the same message: could not interpret type: ....
There is some diferences from the first situation to the secund. Now I'm using NHibernate 1.2.0 Alpha and my namespace is called "Company.DTO" and the assembly is just "DTO". My type is in the namespace Company.DTO.Types, as you can see:
Code:
namespace Company.DTO.Types
{
public class MyTimeSpan : IUserType
{
/// <summary>
/// Public default constructor
/// </summary>
public MyTimeSpan() { }
...
And the hbm.xml is:
Code:
<property column="DOMHORAINICIOPARTE1" type="Company.DTO.Types.MyTimeSpan, Company.DTO.Types" name="Domhorainicioparte1" />
Somebody save-me? :)
Thanks