juanrdev
Results
1
issues of
juanrdev
```c# private static string SP_GetType(string type, bool isNullable) { type = type.ToLower().Trim(); if (type == "int") return "int" + (isNullable ? "?" : ""); else if (type.Contains("numeric")) return "decimal" +...