使用ExpandoObject和IDictionary从动态JSON中删除转义符'\'

时间:2018-12-07 13:13:54

标签: c# json json.net expandoobject idictionary

我正在使用ExpandoObject和IDictionary创建动态JSON。

我的示例代码如下:

DataTable dt_MappedColumns = new DataTable();
    dt_MappedColumns.Columns.Add("Sr.No");
    dt_MappedColumns.Columns.Add("TColumnName");
    dt_MappedColumns.Columns.Add("AColumnName");
    dt_MappedColumns.Rows.Add("1", "Apple", "Lion");
    dt_MappedColumns.Rows.Add("2", "Orange", "Tiger");
    dt_MappedColumns.Rows.Add("3", "Mango", "Fox");
    dt_MappedColumns.Rows.Add("4", "Orange", "Wolf");

    var dictionary1 = new Dictionary<string, object>();
    foreach (DataRow dr in dt_MappedColumns.Rows)
    {
        string key = dr["TColumnName"].ToString();
        string value = dr["AColumnName"].ToString();

        if (!dictionary1.ContainsKey(key))
        {
            // key does not already exist, so add it
            dictionary1.Add(key, value);
        }
        else
        {
            // key exists, get the existing value
            object existingValue = dictionary1[key];

            if (existingValue is string)
            {
                // replace the existing string value with a list
                dictionary1[key] = new List<string> { (string)existingValue, value }; 
            }
            else
            {
                // the existing value is a list, so just add the new value to it
                ((List<string>)existingValue).Add(value);
            }
        }
    }

    string Manjson = JsonConvert.SerializeObject(dictionary1);

这样被愚弄的JSON字符串如下,带有转义字符{\}:

  

“ {\” Apple \“:\” Lion \“,\” Orange \“:[\” Tiger \“,\” Wolf \“],\” Mango \“:\” Fox \“}”

我希望删除转义字符{\},并且所需的JSON如下所示:

  

“ {” Apple“:” Lion“,” Orange“:[” Tiger“,” Wolf“],” Mango“:” Fox“}”

****编辑****

有趣的是,如果我在控制台中打印JSON,则它没有转义符,但是当我插入Oracle DB表时,它会插入转义符。

将Visual Studio 2010 Professional与Oracle 11g和PL / SQL 11.2结合使用

对此有什么解决方案:

我们将不胜感激:)

1 个答案:

答案 0 :(得分:1)

我通过将其转换为JObject然后按如下方式使用来解决了该问题:

  

使用Newtonsoft.Json.Linq;

     

var Varjson = JObject.Parse(Manjson);

其中Manjson是我的带有转义字符('/')的JSON字符串。

对象Varjson将包含反序列化的Json,而没有转义符,如下所示:

  

“ {” Apple“:” Lion“,” Orange“:[” Tiger“,” Wolf“],” Mango“:” Fox“}”

:)