Author: gbayon
Date: Tue Dec 12 10:17:38 2006
New Revision: 486263

URL: http://svn.apache.org/viewvc?view=rev&rev=486263
Log:
Apply patch for IBATISNET-198 from Bruno Silva

Modified:
    
ibatis/trunk/cs/mapper/IBatisNet.Common/Utilities/Objects/Members/GetAccessorFactory.cs
    
ibatis/trunk/cs/mapper/IBatisNet.Common/Utilities/Objects/Members/SetAccessorFactory.cs

Modified: 
ibatis/trunk/cs/mapper/IBatisNet.Common/Utilities/Objects/Members/GetAccessorFactory.cs
URL: 
http://svn.apache.org/viewvc/ibatis/trunk/cs/mapper/IBatisNet.Common/Utilities/Objects/Members/GetAccessorFactory.cs?view=diff&rev=486263&r1=486262&r2=486263
==============================================================================
--- 
ibatis/trunk/cs/mapper/IBatisNet.Common/Utilities/Objects/Members/GetAccessorFactory.cs
 (original)
+++ 
ibatis/trunk/cs/mapper/IBatisNet.Common/Utilities/Objects/Members/GetAccessorFactory.cs
 Tue Dec 12 10:17:38 2006
@@ -241,7 +241,7 @@
         [MethodImpl(MethodImplOptions.Synchronized)]
         public IGetAccessor CreateGetAccessor(Type targetType, string name)
         {
-            string key = targetType.FullName + name;
+            string key = targetType.FullName + "." + name;
 
             if (_cachedIGetAccessor.Contains(key))
             {

Modified: 
ibatis/trunk/cs/mapper/IBatisNet.Common/Utilities/Objects/Members/SetAccessorFactory.cs
URL: 
http://svn.apache.org/viewvc/ibatis/trunk/cs/mapper/IBatisNet.Common/Utilities/Objects/Members/SetAccessorFactory.cs?view=diff&rev=486263&r1=486262&r2=486263
==============================================================================
--- 
ibatis/trunk/cs/mapper/IBatisNet.Common/Utilities/Objects/Members/SetAccessorFactory.cs
 (original)
+++ 
ibatis/trunk/cs/mapper/IBatisNet.Common/Utilities/Objects/Members/SetAccessorFactory.cs
 Tue Dec 12 10:17:38 2006
@@ -240,7 +240,7 @@
         [MethodImpl(MethodImplOptions.Synchronized)]
         public ISetAccessor CreateSetAccessor(Type targetType, string name)
         {
-            string key = targetType.FullName + name;
+            string key = targetType.FullName + "." + name;
 
             if (_cachedISetAccessor.Contains(key))
             {


Reply via email to