hi @DarioN1 ,
My team has been using your amazing tool and we are so greatfull with the results. While we used it, one of my teammates realices that the tool throws and error with stored procedures that has type text or float columns, so we add these lines to the "Program.cs" inside the static string called SP_GetType:
else if (type == "text")
return "string";
and
else if (type.Contains("float"))
return "decimal" + (isNullable ? "?" : "");
We also add these inside the static string SP_GetDBType:
else if (type == "text")
return "string";
We really hope that you could include these lines at your source code.
Regards and keep coding =)
hi @DarioN1 ,
My team has been using your amazing tool and we are so greatfull with the results. While we used it, one of my teammates realices that the tool throws and error with stored procedures that has type text or float columns, so we add these lines to the "Program.cs" inside the static string called SP_GetType:
and
We also add these inside the static string SP_GetDBType:
We really hope that you could include these lines at your source code.
Regards and keep coding =)