objLst = objLst.FindAll(c => c.Emp_cod.Equals(string.Empty)
|| c.Emp_cod.Equals(null))
我有一份所有员工和新员工的列表,他们的 emp_cod 值为 null。
现在,当我尝试使用上面的代码查找新员工时,它会给出对象引用错误。
Emp_cod 列是从 SQL 导入 DBML 时定义如下的字符串:
[Column(Storage = "_Emp_cod", DbType = "VarChar(10)")]
public string Emp_cod { get; set; }