1. ホーム
  2. c#

[解決済み] オブジェクトと辞書の対応付け、およびその逆

2022-09-20 10:42:18

質問

オブジェクトを辞書にマップする、またはその逆を行うエレガントで迅速な方法はありますか?

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

になる

SomeClass b = new SomeClass();
b.Id=1;
b.Name="Ahmad";
// ..........

どのように解決するのですか?

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();
    }
}