[RM-4197] SQL Backend: When Convert.ToString is used, the resulting string is truncated to 30 characters
Component/s: Data.Linq
Issue Type: Bug
Resolution: Fixed
Status: Closed
The reason is that Convert.ToString is translated to CONVERT (NVARCHAR, ...) instead of CONVERT (NVARCHAR(max), ...). The default length for NVARCHAR is only 30 characters.