We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add numeric type to private static string GetSqlDbType(string sqlType, int scale, int precision)
I believe it should be this:
case "decimal": case "numeric": sysType = "Decimal"; break;
Currently sysType is returning as VarChar when numeric is passed as sqlType
The text was updated successfully, but these errors were encountered:
#419 GetSqlDbType missing case numeric. Thanks to krisnatm.
b299cb1
Thanks. This will be in the next release.
Sorry, something went wrong.
#419 Do same to EF.Core
e094923
Released in v2.37.0
sjh37
No branches or pull requests
Add numeric type to private static string GetSqlDbType(string sqlType, int scale, int precision)
I believe it should be this:
case "decimal":
case "numeric":
sysType = "Decimal";
break;
Currently sysType is returning as VarChar when numeric is passed as sqlType
The text was updated successfully, but these errors were encountered: