利用反射动态构成sql语句

Posted on 2013-07-30 19:15  冰天雪域  阅读(230)  评论(0编辑  收藏  举报

class Program
    {
        static void Main(string[] args)
        {
            People p = new People();
            Insert(p);
        }

        public static bool Insert(object obj)
        {
            Type type = obj.GetType();
            string tableName = "tb_" + type.Name;
            string sql = "insert into " + tableName + "(";
            PropertyInfo[] properties = type.GetProperties();
            foreach (PropertyInfo pInfo in properties)
            {
                sql += pInfo.Name + ",";
            }
            sql = sql.Substring(0, sql.LastIndexOf(','));
            sql += ") values(";
            foreach (PropertyInfo pInfo in properties)
            {
                sql += "'" + pInfo.GetValue(obj, null) + "',";
            }
            sql = sql.Substring(0, sql.LastIndexOf(','));
            sql += ")";

            return true;
        }   
    }
    class People
    {
        public string Name { set; get; }
        public string Age { set; get; }
        public string Sex { set; get; }
    }

 

Copyright © 2024 冰天雪域
Powered by .NET 8.0 on Kubernetes