GridView1.DataSource = from p in Product select p;
GridView1.DataBind();
这样的话,会出错:无法将类型为“System.DBNull”的对象强制转换为类型“System.String”。 这是因为数据库Product中某列存在空值,请问有什么好方法能解决?