web-dev-qa-db-ja.com

オブジェクトを辞書にマッピングする、またはその逆

オブジェクトを辞書に、またはその逆にマッピングするエレガントな簡単な方法はありますか?

例:

IDictionary<string,object> a = new Dictionary<string,object>();
a["Id"]=1;
a["Name"]="Ahmad";
// .....

になる

SomeClass b = new SomeClass();
b.Id=1;
b.Name="Ahmad";
// ..........
76
Sawan
public class SimpleObjectDictionaryMapper<TObject>
{
    public static TObject GetObject(IDictionary<string, object> d)
    {
        PropertyInfo[] props = typeof(TObject).GetProperties();
        TObject res = Activator.CreateInstance<TObject>();
        for (int i = 0; i < props.Length; i++)
        {
            if (props[i].CanWrite && d.ContainsKey(props[i].Name))
            {
                props[i].SetValue(res, d[props[i].Name], null);
            }
        }
        return res;
    }

    public static IDictionary<string, object> GetDictionary(TObject o)
    {
        IDictionary<string, object> res = new Dictionary<string, object>();
        PropertyInfo[] props = typeof(TObject).GetProperties();
        for (int i = 0; i < props.Length; i++)
        {
            if (props[i].CanRead)
            {
                res.Add(props[i].Name, props[i].GetValue(o, null));
            }
        }
        return res;
    }
}
2
Sawan

2つの拡張メソッドでいくつかのリフレクションとジェネリックを使用すると、それを実現できます。

確かに、他の人はほとんど同じ解決策を行いましたが、これはより少ない反射を使用するため、パフォーマンスが向上し、読みやすくなります。

public static class ObjectExtensions
{
    public static T ToObject<T>(this IDictionary<string, object> source)
        where T : class, new()
    {
            var someObject = new T();
            var someObjectType = someObject.GetType();

            foreach (var item in source)
            {
                someObjectType
                         .GetProperty(item.Key)
                         .SetValue(someObject, item.Value, null);
            }

            return someObject;
    }

    public static IDictionary<string, object> AsDictionary(this object source, BindingFlags bindingAttr = BindingFlags.DeclaredOnly | BindingFlags.Public | BindingFlags.Instance)
    {
        return source.GetType().GetProperties(bindingAttr).ToDictionary
        (
            propInfo => propInfo.Name,
            propInfo => propInfo.GetValue(source, null)
        );

    }
}

class A
{
    public string Prop1
    {
        get;
        set;
    }

    public int Prop2
    {
        get;
        set;
    }
}

class Program
{
    static void Main(string[] args)
    {
        Dictionary<string, object> dictionary = new Dictionary<string, object>();
        dictionary.Add("Prop1", "hello world!");
        dictionary.Add("Prop2", 3893);
        A someObject = dictionary.ToObject<A>();

        IDictionary<string, object> objectBackToDictionary = someObject.AsDictionary();
    }
}
157

Newtonsoftでまず辞書をJSON文字列に変換します。

var json = JsonConvert.SerializeObject(advancedSettingsDictionary, Newtonsoft.Json.Formatting.Indented);

次に、JSON文字列をオブジェクトにデシリアライズします

var myobject = JsonConvert.DeserializeObject<AOCAdvancedSettings>(json);
16
learnerplates

ここではリフレクションのみが役立つようです。オブジェクトを辞書に、またはその逆に変換する小さな例を行いました。

[TestMethod]
public void DictionaryTest()
{
    var item = new SomeCLass { Id = "1", Name = "name1" };
    IDictionary<string, object> dict = ObjectToDictionary<SomeCLass>(item);
    var obj = ObjectFromDictionary<SomeCLass>(dict);
}

private T ObjectFromDictionary<T>(IDictionary<string, object> dict)
    where T : class 
{
    Type type = typeof(T);
    T result = (T)Activator.CreateInstance(type);
    foreach (var item in dict)
    {
        type.GetProperty(item.Key).SetValue(result, item.Value, null);
    }
    return result;
}

private IDictionary<string, object> ObjectToDictionary<T>(T item)
    where T: class
{
    Type myObjectType = item.GetType();
    IDictionary<string, object> dict = new Dictionary<string, object>();
    var indexer = new object[0];
    PropertyInfo[] properties = myObjectType.GetProperties();
    foreach (var info in properties)
    {
        var value = info.GetValue(item, indexer);
        dict.Add(info.Name, value);
    }
    return dict;
}
11
Andrew Orsich

Castle DictionaryAdapter を強くお勧めします。これは、そのプロジェクトの最もよく守られている秘密の1つです。必要なプロパティを使用してインターフェイスを定義するだけで、コードの1行でアダプターが実装を生成し、インスタンス化し、渡された辞書とその値を同期させます。 Webプロジェクト:

var appSettings =
  new DictionaryAdapterFactory().GetAdapter<IAppSettings>(ConfigurationManager.AppSettings);

IAppSettingsを実装するクラスを作成する必要はなかったことに注意してください。アダプターはその場で実行します。また、この場合は読んでいるだけですが、理論上、appSettingsでプロパティ値を設定している場合、アダプターはこれらの変更と基になるディクショナリーを同期させます。

10
Todd Menier

Reflectionは、プロパティを反復処理することで、オブジェクトから辞書に移動できます。

逆に言えば、型を推測できない限り、C#で動的な ExpandoObject (実際には既にIDictionaryを継承しているため、これを行っている)を使用する必要があります。辞書のエントリのコレクションから何らかの形で。

したがって、.NET 4.0の土地にいる場合は、ExpandoObjectを使用してください。それ以外の場合は、多くの作業が必要になります...

5
Massif

リフレクションを使用すべきだと思います。このようなもの:

private T ConvertDictionaryTo<T>(IDictionary<string, object> dictionary) where T : new()
{
    Type type = typeof (T);
    T ret = new T();

    foreach (var keyValue in dictionary)
    {
        type.GetProperty(keyValue.Key).SetValue(ret, keyValue.Value, null);
    }

    return ret;
}

辞書を受け取り、それをループして値を設定します。あなたはそれを改善する必要がありますが、それは始まりです。次のように呼び出す必要があります。

SomeClass someClass = ConvertDictionaryTo<SomeClass>(a);
4
TurBas

MatíasFidemraizerの答えに基づいて、文字列以外のオブジェクトプロパティへのバインドをサポートするバージョンを以下に示します。

using System.Collections.Generic;
using System.Linq;
using System.Reflection;

namespace WebOpsApi.Shared.Helpers
{
    public static class MappingExtension
    {
        public static T ToObject<T>(this IDictionary<string, object> source)
            where T : class, new()
        {
            var someObject = new T();
            var someObjectType = someObject.GetType();

            foreach (var item in source)
            {
                var key = char.ToUpper(item.Key[0]) + item.Key.Substring(1);
                var targetProperty = someObjectType.GetProperty(key);


                if (targetProperty.PropertyType == typeof (string))
                {
                    targetProperty.SetValue(someObject, item.Value);
                }
                else
                {

                    var parseMethod = targetProperty.PropertyType.GetMethod("TryParse",
                        BindingFlags.Public | BindingFlags.Static, null,
                        new[] {typeof (string), targetProperty.PropertyType.MakeByRefType()}, null);

                    if (parseMethod != null)
                    {
                        var parameters = new[] { item.Value, null };
                        var success = (bool)parseMethod.Invoke(null, parameters);
                        if (success)
                        {
                            targetProperty.SetValue(someObject, parameters[1]);
                        }

                    }
                }
            }

            return someObject;
        }

        public static IDictionary<string, object> AsDictionary(this object source, BindingFlags bindingAttr = BindingFlags.DeclaredOnly | BindingFlags.Public | BindingFlags.Instance)
        {
            return source.GetType().GetProperties(bindingAttr).ToDictionary
            (
                propInfo => propInfo.Name,
                propInfo => propInfo.GetValue(source, null)
            );
        }
    }
}
2
Daniel Lewis
    public Dictionary<string, object> ToDictionary<T>(string key, T value)
    {
        try
        {
            var payload = new Dictionary<string, object>
            {
                { key, value }
            }; 
        } catch (Exception e)
        {
            return null;
        }
    }

    public T FromDictionary<T>(Dictionary<string, object> payload, string key)
    {
        try
        {
            JObject jObject = (JObject) payload[key];
            T t = jObject.ToObject<T>();
            return (t);
        }
        catch(Exception e) {
            return default(T);
        }
    }
0
Williams Abiola

Asp.Net MVCを使用している場合は、以下をご覧ください。

public static RouteValueDictionary AnonymousObjectToHtmlAttributes(object htmlAttributes);

これは、System.Web.Mvc.HtmlHelperクラスの静的パブリックメソッドです。

0
magritte