Closed dougwaldron closed 7 months ago
EntityFramework.ModelValidation.UnlimitedStringLength
Emitted for:
ApplicationUser.AzureAdObjectId
ComplaintAction.Comments
Complaint.CallerName
Complaint.CallerRepresents
Complaint.ComplaintNature
Complaint.ComplaintLocation
Complaint.ComplaintDirections
Complaint.ReviewComments
Complaint.DeleteComments
EmailLog.*
But also consider:
ComplaintTransition.Comment
EmailLog
will be fixed when #681 is implemented.
Useful query:
select top 3 Id,
len(ComplaintNature) as Length,
ComplaintNature
from Complaints
order by len(ComplaintNature) desc;
See: Code Inspection: Possible performance issues caused by unlimited string length | JetBrains Rider Documentation