Open louy opened 11 years ago
public static string SqlType is the method that handles this. Currently it only returns varchar, I modify sqlite.cs to return text for strings.
else if(clrType == typeof(String)) { int len = p.MaxStringLength; //return "varchar(" + len + ")"; return "text"; }
I made a better solution... will update it once my pending pull requests are approved.
Was this solved at some point?
Hello,
Is it possible to create sql TEXT column with ORM?
VARCHARs are not enough and I didn't find anything in the documentation.