Dapper icon indicating copy to clipboard operation
Dapper copied to clipboard

SqlMapper.LookupDbType

Open ai2soft opened this issue 3 years ago • 0 comments

in method , SqlMapper.LookupDbType , typeHandlers.TryGetValue should move upward than typeMap.TryGetValue

          if (typeHandlers.TryGetValue(type, out handler))
            {
                return DbType.Object;
            }
            if (typeMap.TryGetValue(type, out var dbType))
            {
                return dbType;
            }

ai2soft avatar Jul 28 '22 06:07 ai2soft