linq to sql ToList() 方法值
当数据库没有返回任何行时。我是否总是会得到 Count = 0 的 List 对象。是否会出现 List = null 的情况?
when there's no rows returned from the database. Will I always get a List object of Count = 0. Will there ever be a case where the List = null?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
该列表永远不会为
null
。 LINQ 操作是流畅的,因此返回 null 的列表可能会破坏操作链。The list will never be
null
. LINQ operations are fluent, hence having a list returning null can break chains of operations.如果没有行,您将始终得到一个空列表,并且永远不会为空。
You will always get an empty list and never null if there are no rows.