GUID TypeResolving misconfigured
--------------------------------

         Key: IBATISNET-24
         URL: http://issues.apache.org/jira/browse/IBATISNET-24
     Project: iBatis for .NET
        Type: Bug
    Versions: DataMaper 1.5, DataAccess 1.5    
    Reporter: Henrik Uffe Jensen



We had casting errors when using type 'Guid' in resultClass of our statements, 
and 
I found the following in the constructor of 
IBatisNet.Common.Utilities.TypesResolver

_aliases [TypeAliasResolver.GuidAlias] = typeof (double).FullName;

The typeof used for GuidAlias are 'double', but should be 'Guid'

_aliases [TypeAliasResolver.GuidAlias] = typeof (Guid).FullName;


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira

Reply via email to