在asp.net mvc中将一个集合分配给其他集合时启用空值

时间:2015-09-01 09:31:20

标签: c# asp.net asp.net-mvc linq asp.net-mvc-3

我写信给跟随控制器,将一个集合分配给另一个

    public ActionResult Discussion_List() {

        var discussions = (from D in db.AB_Discussion
                           select new
                           {

                           Discussion_ID = D.Discussion_ID,
                           Discussion_Name = D.Discussion_Name,
                           CreatedBy = D.CreatedBy,
                           CreatedDate = D.CreatedDate,
                           UpdatedBy  =  D.UpdatedBy,
                           UpdatedDate =  D.UpdatedDate

                           }).ToList();

        var models = discussions.Select(b => new Discussion_Dashboard()

        {
            Discussion_ID = b.Discussion_ID,
            Discussion_Name = b.Discussion_Name,
            CreatedBy = db.AspNetUsers.Find(b.CreatedBy).UserName,
            CreatedDate = b.CreatedDate,
            UpdatedBy = db.AspNetUsers.Find(b.UpdatedBy).UserName,
            UpdatedDate = b.UpdatedDate

        });

        return View(models);
    }

但是当我在数据库表 AB_Discussion 中的任何一个字段中都有空值时,我收到了以下错误

  

对象引用未设置为对象的实例。

如何避免此错误

这是我的相关模型类

   public partial class Discussion_Dashboard
    {
        public int Discussion_ID { get; set; }
        public string Discussion_Name { get; set; }
        public string Discription { get; set; }
        public string CreatedBy { get; set; }
        public Nullable<System.DateTime> CreatedDate { get; set; }
        public string UpdatedBy { get; set; }
        public Nullable<System.DateTime> UpdatedDate { get; set; }
        public int Views { get; set; }

        public int replys { get; set; }

    }

   public partial class AB_Discussion
    {
        [Key]
        [DatabaseGenerated(System.ComponentModel.DataAnnotations.Schema.DatabaseGeneratedOption.Identity)]
        public int Discussion_ID { get; set; }
        public string Discussion_Name { get; set; }
        public string Discription { get; set; }
        public string CreatedBy { get; set; }
        public Nullable<System.DateTime> CreatedDate { get; set; }
        public string UpdatedBy { get; set; }
        public Nullable<System.DateTime> UpdatedDate { get; set; }
    }

1 个答案:

答案 0 :(得分:0)

我建议使用mapper,例如你可以在GitHub上找到的AutoMapper或通过NuGet安装。 AutoMapper可以帮助您以相对简单的方式将一个类映射到另一个类,并为具有相同名称的字段提供合理的默认值,依此类推。

如果你想允许空值,你可以用?定义它?运算符紧跟在变量声明中的类型之后,例如:

public int? views { get; set; }

这将为您的变量提供一个公共只读属性HasValue,您可以使用它来查看您的变量是否包含值。