hi Team,
with previous versions over 27.1.48 the exception message arrive to client
but in the last versions an error ocurred in serialize the exception, last version from 27.x i can't see the exception message for manage in client application
i attached a demo for reproduce, in server project in controller i force an exception
[EnableQuery]
public IActionResult Get(CancellationToken token)
{
throw new Exception("FORCE ERROR");
GetData();
IQueryable<OrgUnit> tOrgUnits = orgUnits.AsQueryable();
return Ok(tOrgUnits);
}
with previous versions 27.x i can see the message error "FORCE ERROR"
best regards