I have the following string, which will actually be treated as a json
, stored in a column in the database in my SQL Server
:
{"PT":"adssadsadsd "asdada"","ES":"","FR":"","EN":""}
How do I automatically change the string to look like this:
{"PT":"adssadsadsd \"asdada\"","ES":"","FR":"","EN":""}
I want to make this change in the Controller of my MVC project. I need this because I have records in the database that are poorly formatted and then I can not fetch the information in the correct way.