What data type should be correct to store JSON content as string?

Viewed 2179

I plan to use JSON.NET to serialize and deserialize objects to and with the json string store it in the database.

What datatype of the SQL Server 2008 should be the best to store it?

  • nvarchar(max)?
  • varchar(max)?
3 Answers
Related