I have a table with a field ,description nvarchar(200).
I am inserting string with a lot of lines.
When I take quick watch over the string in visual studio, I can see the string splited over mutile lines as i expected.
line1
line2
line3
But when I insert to database using a stored procedure,all "\n\r" beomes just spaces. When I read from the databse there is no "\n\r"
what can i do?