You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SubSonic/Extensions/Objects.cs line 83 - is currently:
else if (conversionType == typeof(Int64) && value.GetType() == typeof(int))
accounting for a SQLLite provider problem... Shouldn't this actually be:
else if (conversionType == typeof(int) && value.GetType() == typeof(Int64))
I should always be able to convert int(32) to Int64 - just not the other way around.
or shouldn't it even be handled in the provider itself and not down in your extension method?
Thanks,
Hal
The text was updated successfully, but these errors were encountered:
SubSonic/Extensions/Objects.cs line 83 - is currently:
else if (conversionType == typeof(Int64) && value.GetType() == typeof(int))
accounting for a SQLLite provider problem... Shouldn't this actually be:
else if (conversionType == typeof(int) && value.GetType() == typeof(Int64))
I should always be able to convert int(32) to Int64 - just not the other way around.
or shouldn't it even be handled in the provider itself and not down in your extension method?
Thanks,
Hal
The text was updated successfully, but these errors were encountered: