Hi, we've been using SnapObjects for quite a while without too many issues, but today we found that one of our stored procedure calls truncates the output parameter to 4000 characters. Is that configurable in SnapObjects, or is it a hard limit? We are using SnapDevelop 2021.
The code is:
var detailParam = ParamValue.Output<string>("dets");
try
{
// Executes the stored procedure and gets the details in detailParam.
// But it truncates detailParam to 4000 characters.
_dataContext.SqlExecutor.ExecuteProcedure(procedureName, idParam, argParam, detailParam);
}