将 LINQ-to-SQL 与 resharper 结合使用
我正在使用 LINQ-to-SQL,并且还有 resharper。在存储库中,我有一行:
IList<Employee> employees = DataContext.Employees.Where(emp => emp.CompanyID == companyID).ToList();
其中工资单是一个实体。
下面我有一行:
if(employees! = null && employees.Count > 0)
{
///TODO:
}
Resharper 说工资不能等于 null。
如果 companyId 没有匹配,员工不会为空。谁能更详细地解释一下雷沙珀的说法吗?
I am using LINQ-to-SQL and I also have resharper. In the repository I have a line:
IList<Employee> employees = DataContext.Employees.Where(emp => emp.CompanyID == companyID).ToList();
Where Payroll is an Entity.
Below I have a line:
if(employees! = null && employees.Count > 0)
{
///TODO:
}
Resharper says payrolls cannot be equal to null.
If there is no match for companyId , wont employees be null. Can ayone throw more light on wh resharper says so??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果没有匹配的 companyId LINQ 将返回一个空的 Enumerable,它永远不会为 null。
If there is no match for companyId LINQ will return an empty Enumerable, it never will be null.