I have a column in SQL varchar (max). Using LINQ, when I try to add a record with a string larger than 64 KB, the value is not stored in the database. I just do:
test.MyString = LargeString; //(over 64k text) mydb.myTable.InsertOnSubmit(test); mydb.SubmitChanges();
Is there a limit when using LINQ to SQL? What is the right way to do this?
source share