SPToCore
SPToCore copied to clipboard
Stored Procedures with data type of Money are not mapped
When scaffolding a stored procedure with a parameter type of "money", the procedure is skipped because it is unmapped in the following places: private static string SP_GetType(string type, bool isNullable)
else if (type == "uniqueidentifier")
return "Guid" + (isNullable ? "?" : "");
**else if (type == "money")
return "decimal" + (isNullable ? "?" : "");**
private static string SP_GetDbType(string type)
else if (type == "uniqueidentifier")
return "Guid";
**else if (type == "money")
return "decimal";**
You are right @jasjnr02 , I will include it asap... Thanks to support !
same problem with type "float" not mapped