码迷,mamicode.com
首页 > 其他好文 > 详细

检查对象属性是否有空值

时间:2015-09-14 11:51:27      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:

 public ActionResult Create(crm_CompetitiveProducts cp)
        {
            using (var db = new BaseDbContext())
            {
                PropertyInfo[] propertys = cp.GetType().GetProperties();
                int a = 0;
                foreach (var i in propertys)
                {
                    if (i.GetValue(cp) == null)
                    {
                        a = a + 1;
                    }
                }
                if (a == 0)
                {
                    db.Insert<crm_CompetitiveProducts>(cp);
                }
                else
                {
                    this.ShowMessage("信息不全", "录入失败");
                    return RedirectToAction("Create");
                }
                return RedirectToAction("Index");
            }
        }

 

检查对象属性是否有空值

标签:

原文地址:http://www.cnblogs.com/happinesshappy/p/4806580.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!