Hi,
Greetings for the day.
I am connecting and inserting values to a table from ASP.Net using Entity Framework.
I am having one column whose data type is "Varchar(Max)."
I am trying to insert a value whose max text length is like some (18 - 20 )..
But i am having error as
Cannot create a row of size 8061 which is greater than the allowable maximum row size of 8060.
But this 8061 varies based on the length of the given text (I think so).
May i know what may be the reason for this error.
I have seen the entity framework designer class and there is no
restriction for the text length.
And i am sure that i did not change the data type (ie. from varchar(X) to varchar(max)).
May i kindly know where i am mistaking and how to resolve this.
Thanks in advance..
NANDAKUMAR.T