Dictionary转为Model实例

Posted mact

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Dictionary转为Model实例相关的知识,希望对你有一定的参考价值。

Dictionary<string, object> dic = new Dictionary<string, object>();
  dic.Add("Id",100);
  dic.Add("Name", "keso");
  dic.Add("Group", "程序员");
  转换字典方法:
public static T ConvertDic<T>(Dictionary<string, object> dic)
{
T model = Activator.CreateInstance<T>();
PropertyInfo[] modelPro = model.GetType().GetProperties();
if (modelPro.Length > 0 && dic.Count() > 0)
{
for (int i = 0; i < modelPro.Length; i++)
{
if (dic.ContainsKey(modelPro[i].Name))
{
modelPro[i].SetValue(model, dic[modelPro[i].Name], null);
}
}
}
return model;
}
  最后的调用:
  User user = ConvertDic<User>(dic);

 

以上是关于Dictionary转为Model实例的主要内容,如果未能解决你的问题,请参考以下文章

HandyJSON:Swift语言JSON转Model工具库

双组成 Dictionary<int, Dictionary<string, List<Model>>>()

JavaScript中创建字典对象(dictionary)实例

如何将 View 类中的代码片段移动到 OnAppearing() 方法?

Swift 5 从Model, Struct或Class转Dictionary

python django model values_list to dictionary