ऐसा लगता है कि ये सभी उत्तर यहां दिए गए हैं, आप मान सकते हैं कि आप किसी बड़ी वस्तु से उस छोटे तार को प्राप्त कर सकते हैं ... मैपिंग के अंदर कहीं इस तरह के शब्दकोश के साथ एक बड़ी वस्तु को देखने की इच्छा रखने वाले लोगों के लिए, और जो System.Runtime.Serialization.Json
DataContract प्रणाली का उपयोग कर रहे हैं , यहां है एक तरकीब:
Gis.stackexchange.com पर एक उत्तर में यह दिलचस्प लिंक था । मुझे इसे आर्काइव.ऑर्ग के साथ पुनर्प्राप्त करना था, लेकिन यह एक बहुत ही सटीक समाधान प्रदान करता है: एक कस्टम IDataContractSurrogate
वर्ग जिसमें आप बिल्कुल अपने प्रकारों को लागू करते हैं। मैं इसका विस्तार आसानी से कर पा रहा था।
मैंने इसमें परिवर्तनों का एक गुच्छा बनाया, हालाँकि। चूंकि मूल स्रोत अब उपलब्ध नहीं है, इसलिए मैं पूरी कक्षा यहां पोस्ट करूंगा:
using System;
using System.CodeDom;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Runtime.Serialization;
using System.Runtime.Serialization.Json;
using System.Text;
namespace JsonTools
{
/// <summary>
/// Allows using Dictionary<String,String> and Dictionary<String,Boolean> types, and any others you'd like to add.
/// Source: https://web.archive.org/web/20100317222656/my6solutions.com/post/2009/06/30/DataContractSerializer-DataContractJsonSerializer-JavaScriptSerializer-XmlSerializer-for-serialization.aspx
/// </summary>
public class JsonSurrogate : IDataContractSurrogate
{
/// <summary>
/// Deserialize an object with added support for the types defined in this class.
/// </summary>
/// <typeparam name="T">Contract class</typeparam>
/// <param name="json">JSON String</param>
/// <param name="encoding">Text encoding</param>
/// <returns>The deserialized object of type T</returns>
public static T Deserialize<T>(String json, Encoding encoding)
{
if (encoding == null)
encoding = new UTF8Encoding(false);
DataContractJsonSerializer deserializer = new DataContractJsonSerializer(
typeof(T), new Type[0], int.MaxValue, true, new JsonSurrogate(), false);
using (MemoryStream stream = new MemoryStream(encoding.GetBytes(json)))
{
T result = (T)deserializer.ReadObject(stream);
return result;
}
}
// make sure all values in this are classes implementing JsonSurrogateObject.
private static Dictionary<Type, Type> KnownTypes =
new Dictionary<Type, Type>()
{
{typeof(Dictionary<String, String>), typeof(SSDictionary)},
{typeof(Dictionary<String, Boolean>), typeof(SBDictionary)}
};
#region Implemented surrogate dictionary classes
[Serializable]
public class SSDictionary : SurrogateDictionary<String>
{
public SSDictionary() : base() {}
protected SSDictionary (SerializationInfo info, StreamingContext context) : base(info, context) {}
}
[Serializable]
public class SBDictionary : SurrogateDictionary<Boolean>
{
public SBDictionary() : base() {}
protected SBDictionary (SerializationInfo info, StreamingContext context) : base(info, context) {}
}
#endregion
/// <summary>Small interface to easily extract the final value from the object.</summary>
public interface JsonSurrogateObject
{
Object DeserializedObject { get; }
}
/// <summary>
/// Class for deserializing any simple dictionary types with a string as key.
/// </summary>
/// <typeparam name="T">Any simple type that will be deserialized correctly.</typeparam>
[Serializable]
public abstract class SurrogateDictionary<T> : ISerializable, JsonSurrogateObject
{
public Object DeserializedObject { get { return dict; } }
private Dictionary<String, T> dict;
public SurrogateDictionary()
{
dict = new Dictionary<String, T>();
}
// deserialize
protected SurrogateDictionary(SerializationInfo info, StreamingContext context)
{
dict = new Dictionary<String, T>();
foreach (SerializationEntry entry in info)
{
// This cast will only work for base types, of course.
dict.Add(entry.Name, (T)entry.Value);
}
}
// serialize
public void GetObjectData(SerializationInfo info, StreamingContext context)
{
foreach (String key in dict.Keys)
{
info.AddValue(key, dict[key]);
}
}
}
/// <summary>
/// Uses the KnownTypes dictionary to get the surrogate classes.
/// </summary>
/// <param name="type"></param>
/// <returns></returns>
public Type GetDataContractType(Type type)
{
Type returnType;
if (KnownTypes.TryGetValue(type, out returnType))
{
return returnType;
}
return type;
}
public object GetObjectToSerialize(object obj, Type targetType)
{
throw new NotImplementedException();
}
/// <summary>
/// Gets the object out of the surrogate datacontract object. This function is the reason all surrogate objects need to implement the JsonSurrogateObject class.
/// </summary>
/// <param name="obj">Result of the deserialization</param>
/// <param name="targetType">Expected target type of the deserialization</param>
/// <returns></returns>
public object GetDeserializedObject(object obj, Type targetType)
{
if (obj is JsonSurrogateObject)
{
return ((JsonSurrogateObject)obj).DeserializedObject;
}
return obj;
}
public Type GetReferencedTypeOnImport(string typeName, string typeNamespace, object customData)
{
return null;
}
#region not implemented
public object GetCustomDataToExport(MemberInfo memberInfo, Type dataContractType)
{
throw new NotImplementedException();
}
public object GetCustomDataToExport(Type clrType, Type dataContractType)
{
throw new NotImplementedException();
}
public void GetKnownCustomDataTypes(Collection<Type> customDataTypes)
{
throw new NotImplementedException();
}
public CodeTypeDeclaration ProcessImportedType(CodeTypeDeclaration typeDeclaration, CodeCompileUnit compileUnit)
{
throw new NotImplementedException();
}
#endregion
}
}
नए समर्थित प्रकारों को कक्षा में जोड़ने के लिए, आपको बस अपनी कक्षा को जोड़ने की जरूरत है, इसे सही कंस्ट्रक्टर और फ़ंक्शन दें ( SurrogateDictionary
उदाहरण के लिए देखें), सुनिश्चित करें कि यह विरासत में मिला है JsonSurrogateObject
, और KnownTypes
शब्दकोश में इसके प्रकार की मैपिंग जोड़ें । शामिल सरोगेटेबेर किसी भी Dictionary<String,T>
प्रकार के लिए आधार के रूप में कार्य कर सकता है जहां टी किसी भी प्रकार का है जो सही ढंग से डिसरिज़लाइज़ करता है।
इसे कॉल करना वास्तव में सरल है:
MyObjtype newObj = JsonSurrogate.Deserialize<MyObjtype>(jsonStr, encoding);
ध्यान दें कि किसी कारण से इस चीज को महत्वपूर्ण तारों का उपयोग करने में परेशानी होती है जिसमें रिक्त स्थान होते हैं; वे बस अंतिम सूची में मौजूद नहीं थे। हो सकता है कि यह सिर्फ जोंस के चश्मे के खिलाफ हो और मैं जिस एपीआई को फोन कर रहा था, उसे खराब तरीके से लागू किया गया था, आपको बुरा लगा; मुझे नही पता। वैसे भी, मैंने इसे regex से बदलकर कच्चे जोंस डेटा में अंडरस्कोर के साथ बदल दिया और डिसेरिएलाइज़ेशन के बाद शब्दकोश को ठीक किया।
JavaScriptSerizlizer
ASP.NET MVC में उपयोग किया जाता है और अब नहीं निकाला जाता है।