Is there a clever way to determine which field is causing \'string or binary data would be truncated\' with LINQ.
I\'ve always ended up doing it manually by stepping thr
Assuming you are processing a large batch of records and you don't want to (can't) validate the data before hand and you just want db constraints to catch any errors?
Change your program to catch the exception and print out the current record details to a log file or something.
Record # 9999
Caused "string or binary data would be truncated" error
Field1: "Data" Length: 55
Field2: 9999
etc.