I am using Newtonsoft JSON in my project. In my WCF project i am converting a Dataset that has around 1000 rows with 20 columns. When i serialize Dataset and return the json string, the string is returning empty. I found out that if i reduce the rows to 100 then i am getting the string. I believe that the length of the serialize json string has exceeded the limit. How to set a maximum size for the json string when serializing a Dataset?
Regards, Rajagopalan.