In your mapping, set the string property length to 4001 or higher:
Map(x => x.FirstName).Length(4001);
Jamie Ide
2010-02-22 14:52:12
In your mapping, set the string property length to 4001 or higher:
Map(x => x.FirstName).Length(4001);
The solution is not really an answer.... but works anyway. To fix the issue I changed the length in the mapping to 10000. Now it all works.
So my mappings would now look like :
Map(x => x.FirstName).Length(10000);
Go figure.
It would be great is someone could shed some light on this peculiarity.