将 LINQ-to-SQL 与 resharper 结合使用

发布于 2024-11-15 08:43:00 字数 432 浏览 3 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

调妓 2024-11-22 08:43:00

如果没有匹配的 companyId LINQ 将返回一个空的 Enumerable,它永远不会为 null。

If there is no match for companyId LINQ will return an empty Enumerable, it never will be null.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文