ICode9

精准搜索请尝试: 精确搜索
首页 > 数据库> 文章详细

c# – 对象映射器的通用SqlDataReader

2019-06-21 05:52:01  阅读:306  来源: 互联网

标签:c sqldatareader generics


我正在尝试构建一个通用映射器,它将SqlDataReader的结果转换为类对象.

这是我的代码的基本结构:

public interface IObjectCore
    {
        //contains properties for each of my objects
    }

    public class ObjectMapper<T> where T : IObjectCore, new()
    {
        public List<T> MapReaderToObjectList(SqlDataReader reader)
        {
            var resultList = new List<T>();
            while (reader.Read())
            {
                var item = new T();
                Type t = item.GetType();
                foreach (PropertyInfo property in t.GetProperties())
                {
                    Type type = property.PropertyType;
                    string readerValue = string.Empty;

                    if (reader[property.Name] != DBNull.Value)
                    {
                        readerValue = reader[property.Name].ToString();
                    }

                    if (!string.IsNullOrEmpty(readerValue))
                    {
                        property.SetValue(property, readerValue.To(type), null);
                    }

                }
            }
            return resultList;
        }
    }

    public static class TypeCaster
    {
        public static object To(this string value, Type t)
        {
            return Convert.ChangeType(value, t);
        }
    }

它在大多数情况下似乎工作,但一旦它试图设置属性的值,我得到以下错误:

Object does not match target type

在我有property.SetValue的行.

我已经尝试了一切,但我没有看到我可能做错了什么.

解决方法:

您正在尝试设置要循环的属性的值,我认为您的目的是设置新创建的项目的值,因为它将基于item.GetType与您传递的类型相匹配()

var item = new T();
//other code
property.SetValue(item , readerValue.To(type), null);

代替

property.SetValue(property, readerValue.To(type), null);

同样根据评论,请确保您拥有:

resultList.Add(item);

标签:c,sqldatareader,generics
来源: https://codeday.me/bug/20190621/1252391.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有