zoukankan      html  css  js  c++  java
  • JsonSerializerHelper other 武胜

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.IO;
    using Newtonsoft.Json;

    namespace Serializable
    {
        public static class JsonSerializerHelper
        {
            public static TEntity JsonToEntity<TEntity>(string jsonStr)
            {
                using (StringReader sw = new StringReader(jsonStr))
                {
                    JsonSerializer serializer = new JsonSerializer
                    {
                        TypeNameHandling = TypeNameHandling.Objects,
                    };
                    using (JsonReader jw = new JsonTextReader(sw))
                    {
                        TEntity entity = serializer.Deserialize<TEntity>(jw);
                        return entity;
                    }

                }
            }

            public static string EntityToJson(object obj)
            {
                return EntityToJson(obj, null);
            }

            public static string EntityToJson(object obj, string[] exceptMemberName)
            {
                using (StringWriter sw = new StringWriter(System.Globalization.CultureInfo.InvariantCulture))
                {
                    JsonSerializer serializer = new JsonSerializer
                    {

                        NullValueHandling = NullValueHandling.Ignore,
                        ReferenceLoopHandling = ReferenceLoopHandling.Ignore,
                        ContractResolver = new NHibernateContractResolver(exceptMemberName),
                    };
                    using (JsonWriter jw = new JsonTextWriter(sw))
                    {
                        jw.Formatting = Formatting.Indented;
                        serializer.Serialize(jw, obj);
                    }
                    return sw.ToString();
                }
            }
        }
    }

  • 相关阅读:
    mybatis05--多条件的查询
    mybatis04--Mapper动态代理实现
    mybatis03--字段名和属性名不一致
    mybatis02--增删改查
    myBatis01
    hibernate12--缓存
    hibernate11--Criteria查询
    hibernate10--命名查询
    hibernate09--连接查询
    (转载)閱讀他人的程式碼(5)找到程式入口,再由上而下抽絲剝繭
  • 原文地址:https://www.cnblogs.com/zeroone/p/2477092.html
Copyright © 2011-2022 走看看