在1的基础上做了一点改进 参数化处理 看上去更简洁 无主键情况下 update 方法需要改进 insert delete没有问题

 /// <summary>
    /// DAO基类 实体名必须要与数据表字段名一致
    /// </summary>
    /// <typeparam name="T"></typeparam>
    public class BaseDao<T> where T : new()
    {
        protected DataModule dataModule = new DataModule();         /// <summary>
        /// 表名
        /// </summary>
        public virtual string TableName { get; set; }         /// <summary>
        /// 主键ID
        /// </summary>
        public virtual string PrimaryKey { get; set; }         /// <summary>
        /// 实体属性
        /// </summary>
        private PropertyInfo[] properties = null;         /// <summary>
        /// 实体类型
        /// </summary>
        private readonly Type t = typeof(T);         public BaseDao()
        {
            t = typeof(T);
            properties = t.GetProperties();
        }         public BaseDao(string tableName, string primaryKey)
            : this()
        {
            this.TableName = tableName;
            this.PrimaryKey = primaryKey;
        }         public int GetMaxID()
        {
            string sql = "select max(cast(" + PrimaryKey + " as decimal(18,0))) as MaxId from " + TableName;
            DataTable dt = dataModule.GetDataTable(sql);
            if (dt.Rows[0][0] == DBNull.Value)
            {
                return 1;
            }
            else
            {
                return Convert.ToInt32(dt.Rows[0][0]) + 1;
            }
        }         /// <summary>
        /// 清除实体字段
        /// </summary>
        /// <param name="entity"></param>
        public void ClearT(ref T entity)
        {
            entity = default(T);
            entity = new T();
        }         /// <summary>
        /// 获取实体
        /// </summary>
        /// <param name="id"></param>
        /// <returns></returns>
        public T GetT(string id)
        {
            string sql = "select * from " + TableName + " where " + PrimaryKey + "='" + id + "'";
            DataTable dt = dataModule.GetDataTable(sql);
            T entity = new T();
            return SetEntityValue(dt, entity);
        }         /// <summary>
        /// 根据多个条件获取实体
        /// </summary>
        /// <param name="entity"></param>
        /// <returns></returns>
        public T GetT(T entity)
        {
            StringBuilder sql = new StringBuilder("select * from " + TableName + " where ");
            Hashtable ht = GetWhereConditionSQL(entity);
            string where = ht["SQL"] as string;
            sql.Append(where);
            SqlParameter[] paras = ht["PAMS"] as SqlParameter[];
            DataTable dt = dataModule.GetDataTable(sql.ToString(), paras);
            return SetEntityValue(dt, entity);
        }         /// <summary>
        /// 保存
        /// </summary>
        /// <param name="e"></param>
        /// <returns></returns>
        public bool InsertT(T entity)
        {
            StringBuilder sql = new StringBuilder("");             if (string.IsNullOrEmpty(TableName))
            {
                TableName = t.FullName.TrimStart((t.Namespace + ".").ToArray());
            }             if (!string.IsNullOrEmpty(PrimaryKey) && t.GetProperty(PrimaryKey).GetValue(entity, null) == null)
            {
                if (t.GetProperty(PrimaryKey).PropertyType == typeof(string))
                {
                    t.GetProperty(PrimaryKey).SetValue(entity, GetMaxID().ToString(), null);
                }
                else
                {
                    t.GetProperty(PrimaryKey).SetValue(entity, GetMaxID(), null);
                }
            }
            sql.Append(" Insert into " + TableName + " ( ");
            StringBuilder insertFields = new StringBuilder("");
            StringBuilder insertValues = new StringBuilder("");
            List<SqlParameter> paras = new List<SqlParameter>();
            foreach (PropertyInfo property in properties)
            {
                if (property.GetValue(entity, null) != null)
                {
                    insertFields.Append("" + property.Name + ",");
                    insertValues.Append("@" + property.Name + ",");
                    paras.Add(new SqlParameter("@" + property.Name, property.GetValue(entity, null)));
                }             }
            sql.Append(insertFields.ToString().TrimEnd(','));
            sql.Append(" ) VALUES ( ");
            sql.Append(insertValues.ToString().TrimEnd(','));
            sql.Append(")");             return dataModule.ExcuteSql(sql.ToString(), paras.ToArray());
        }         /// <summary>
        /// 更新
        /// </summary>
        /// <param name="entity"></param>
        /// <returns></returns>
        public bool UpdateT(T entity)
        {
            StringBuilder sql = new StringBuilder("");             if (string.IsNullOrEmpty(TableName))
            {
                TableName = t.FullName.TrimStart((t.Namespace + ".").ToArray());
            }             sql.Append(" update " + TableName + " set ");
            StringBuilder updateValues = new StringBuilder("");
            List<SqlParameter> paras = new List<SqlParameter>();
            foreach (PropertyInfo property in properties)
            {
                if (property.GetValue(entity, null) != null)
                {
                    updateValues.Append(property.Name + "=@" + property.Name + ",");
                    paras.Add(new SqlParameter("@" + property.Name, property.GetValue(entity, null)));
                }
                else
                {
                    updateValues.Append(property.Name + "=null,");
                }             }
            sql.Append(updateValues.ToString().TrimEnd(','));
            sql.Append(" where " + PrimaryKey + "=@" + PrimaryKey);             return dataModule.ExcuteSql(sql.ToString(), paras.ToArray());
        }         /// <summary>
        /// 更新指定字段
        /// </summary>
        /// <param name="entity"></param>
        /// <param name="field">实体属性名称</param>
        /// <returns></returns>
        public bool UpdateT(T entity, string field)
        {
            StringBuilder sql = new StringBuilder("");
            if (string.IsNullOrEmpty(TableName))
            {
                TableName = t.FullName.TrimStart((t.Namespace + ".").ToArray());
            }
            sql.Append(" update " + TableName + " set ");
            StringBuilder updateValues = new StringBuilder("");
            List<SqlParameter> paras = new List<SqlParameter>();
            updateValues.Append(field + "=@" + field + " ");
            paras.Add(new SqlParameter("@" + field, t.GetProperty(field).GetValue(entity, null)));
            sql.Append(updateValues.ToString());
            sql.Append(" where " + PrimaryKey + "=@" + PrimaryKey);
            paras.Add(new SqlParameter("@" + PrimaryKey,t.GetProperty(PrimaryKey).GetValue(entity, null)));
            return dataModule.ExcuteSql(sql.ToString(),paras.ToArray());
        }         /// <summary>
        /// 根据多个字段删除实体
        /// </summary>
        /// <param name="entity"></param>
        /// <returns></returns>
        public bool DeleteT(T entity)
        {
            StringBuilder sql = new StringBuilder("delete from " + TableName + " where ");
            Hashtable ht = GetWhereConditionSQL(entity);
            string where = ht["SQL"] as string;
            sql.Append(where);
            SqlParameter[] paras = ht["PAMS"] as SqlParameter[];
            return dataModule.ExcuteSql(sql.ToString(), paras);
        }         /// <summary>
        /// 根据主键删除实体
        /// </summary>
        /// <param name="id"></param>
        /// <returns></returns>
        public bool DeleteT(string id)
        {
            StringBuilder sql = new StringBuilder("delete from " + TableName + " where " + PrimaryKey + "='" + id + "'");
            return dataModule.ExcuteSql(sql.ToString());
        }         /// <summary>
        /// 获取where 条件sql
        /// </summary>
        /// <param name="entity"></param>
        /// <returns></returns>
        private Hashtable GetWhereConditionSQL(T entity)
        {
            StringBuilder whereCondition = new StringBuilder("");
            List<SqlParameter> paras = new List<SqlParameter>();
            foreach (PropertyInfo property in properties)
            {
                if (property.GetValue(entity, null) != null)
                {
                    whereCondition.Append(" " + property.Name + "=@" + property.Name + " and");
                    paras.Add(new SqlParameter("@" + property.Name, property.GetValue(entity, null)));
                    if (property.Name == PrimaryKey)
                    {
                        break;
                    }
                }
            }
            Hashtable ht = new Hashtable();
            ht.Add("SQL", whereCondition.ToString().TrimEnd("and".ToArray()));
            ht.Add("PAMS", paras.ToArray());
            return ht;
        }         /// <summary>
        /// 设置实体属性值
        /// </summary>
        /// <param name="dt"></param>
        /// <param name="entity"></param>
        /// <returns></returns>
        private T SetEntityValue(DataTable dt, T entity)
        {
            if (dt != null && dt.Rows.Count > 0)
            {
                foreach (PropertyInfo property in properties)
                {
                    if (dt.Rows[0][property.Name] != DBNull.Value)
                    {
                        if (property.PropertyType == typeof(string))
                        {
                            t.GetProperty(property.Name).SetValue(entity, Convert.ToString(dt.Rows[0][property.Name]), null);
                        }
                        else if (property.PropertyType == typeof(int?))
                        {
                            t.GetProperty(property.Name).SetValue(entity, Convert.ToInt32(dt.Rows[0][property.Name]), null);
                        }
                        else if (property.PropertyType == typeof(DateTime?))
                        {
                            t.GetProperty(property.Name).SetValue(entity, Convert.ToDateTime(dt.Rows[0][property.Name]), null);
                        }
                        else if (property.PropertyType == typeof(long?))
                        {
                            t.GetProperty(property.Name).SetValue(entity, Convert.ToInt64(dt.Rows[0][property.Name]), null);
                        }
                        else if (property.PropertyType == typeof(double?))
                        {
                            t.GetProperty(property.Name).SetValue(entity, Convert.ToDouble(dt.Rows[0][property.Name]), null);
                        }
                        else if (property.PropertyType == typeof(bool?))
                        {
                            t.GetProperty(property.Name).SetValue(entity, Convert.ToBoolean(dt.Rows[0][property.Name]), null);
                        }
                        else if (property.PropertyType == typeof(decimal?))
                        {
                            t.GetProperty(property.Name).SetValue(entity, Convert.ToDecimal(dt.Rows[0][property.Name]), null);
                        }
                        else if (property.PropertyType == typeof(byte[]))
                        {
                            t.GetProperty(property.Name).SetValue(entity, Convert.ToByte(dt.Rows[0][property.Name]), null);
                        }
                        else
                        {
                            t.GetProperty(property.Name).SetValue(entity, Convert.ToString(dt.Rows[0][property.Name]), null);
                        }                     }
                }
                return entity;
            }
            else
            {
                return default(T);
            }
        }     }

winform中利用反射实现泛型数据访问对象基类(2)的更多相关文章

  1. winform中利用反射实现泛型数据访问对象基类(1)

    考虑到软件使用在客户端,同时想简化代码的实现,就写了一个泛型的数据访问对象基类,并不是特别健全,按道理应该参数化的方式实现insert和update,暂未使用参数化,抽时间改进. /// <su ...

  2. winform中利用反射实现泛型数据访问对象基类(3)

    继续完善了几点代码 满足没有主键的情况下使用 并且完善实体字段反射设置value时的类型转换 /// <summary> /// DAO基类 实体名必须要与数据表字段名一致 /// < ...

  3. 利用反射和泛型把Model对象按行储存进数据库以及按行取出然后转换成Model 类实例 MVC网站通用配置项管理

    利用反射和泛型把Model对象按行储存进数据库以及按行取出然后转换成Model 类实例 MVC网站通用配置项管理   2018-3-10 15:18 | 发布:Admin | 分类:代码库 | 评论: ...

  4. JAVAWEB基础模块开发顺序与数据访问对象实现类步骤

    一.模块的开发的顺序 1. 定义数据表 2. 新建模型类 3. 新建"add.jsp" 4. 实现AddServlet中的doGet()方法 5. 定义Dao.Service接口 ...

  5. C#利用反射和泛型给不同对象赋值

    /// <summary> /// 适用于初始化新实体 /// </summary> static public T RotationMapping<T, S>(S ...

  6. EntityFramework经典数据访问层基类——增删改查

    namespace StudentSys.DAL { public class BaseService<T>:IDisposable where T:BaseEntity,new() { ...

  7. Java数据访问对象模式

    数据访问对象模式或DAO模式用于将低级数据访问API或操作与高级业务服务分离. 以下是数据访问对象模式的参与者. 数据访问对象接口 - 此接口定义要对模型对象执行的标准操作. 数据访问对象具体类 - ...

  8. [.net 面向对象程序设计进阶] (21) 反射(Reflection)(下)设计模式中利用反射解耦

    [.net 面向对象程序设计进阶] (21) 反射(Reflection)(下)设计模式中利用反射解耦 本节导读:上篇文章简单介绍了.NET面向对象中一个重要的技术反射的基本应用,它可以让我们动态的调 ...

  9. DataTable转任意类型对象List数组-----工具通用类(利用反射和泛型)

    public class ConvertHelper<T> where T : new() { /// <summary> /// 利用反射和泛型 /// </summa ...

随机推荐

  1. Facebook Hacker Cup 2014 Qualification Round

    2014 Qualification Round Solutions 2013年11月25日下午 1:34 ...最简单的一题又有bug...自以为是真是很厉害! 1. Square Detector ...

  2. yii遍历行下的每列数据(小1月考)

    效果图: 控制器(1种): //显示列表    public function actionList()    {        //实例化对象        $model= new Qiu();   ...

  3. 查看Linux服务器各种信息方法

    有的时候需要搜集服务器的各种信息,比如cpu信息,内存信息,linux版本信息,安装的各种软件信息等等.下面总结几种主要指标的查看方法. 1. 查看Linux发行版信息 [root@pcmweb ~] ...

  4. mysql报错 "code":"08S01","msg":"SQLSTATE

    2016-04-25 09:22 97人阅读 评论(0) 收藏 举报 分类: Magento(6) 今天在批量伪造测试数据时,MySQL收到下面异常:ERROR 1153 (08S01): Got a ...

  5. 常用的网络配置命令 ifconfig 所在的包

    通过rpm的数据库反查 ifconfig这个可执行文件的提供者,得出这个文件属于一个叫 net-tools 的包

  6. linux中使用软链接时出现 too many levels of symbolic links

    刚开始使用的源文件的路径是相对路径,所以导致标题中的这种错误. 只要用绝对路径表示源文件就好了.如果用相对路径的话,实际相对的是目标文件所在的路径,而在创建链接文件时用的路径是相对于当前的路径.

  7. Controller 接口控制器详解

    Controller 控制器,是 MVC 中的部分 C,为什么是部分呢?因为此处的控制器主要负责功能处理部分:1.收集.验证请求参数并绑定到命令对象:2.将命令对象交给业务对象,由业务对象处理并返回模 ...

  8. JS 字符串转日期格式 日期格式化字符串

    /** * @author 陈维斌 http://www.cnblogs.com/Orange-C/p/4042242.html%20 3 * 如果想将日期字符串格式化,需先将其转换为日期类型Date ...

  9. After install XAMPP

    1. configure mysql and phpmyadmin 1.1 mysql $ /Applications/XAMPP/xamppfiles/bin/mysql -uroot $ mysq ...

  10. jquery,返回到顶部按钮

    HTML: <footer> <a href="#" class="top">↑</a> </footer> C ...