I'm using json.net to serialize a class that has strings, however, when it is converted to json the strings are convert to null, is there a way I could make json.net convert null strings to emtpy strings ('') and not null?
Here is what I currently get
var client = {
"FirstName": null,
"LastName": null
}
and I want this:
var client = {
"FirstName": '',
"LastName": ''
}