Skip to content

Type TEXT and FLOAT support #17

Description

@marturojt

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 =)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions