什么是C#中的Where

什么是C#中的Where

本文介绍了什么是C#中的Where()的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在参考文献中遇到了以下代码。我可以知道Where(r => r.TrackingState)是关于什么的?或者更具体地说,Where(=>)是什么?谢谢。

以下是代码:



 如果(_unitDtoListToGrid.DtoList.Where(R =  r.TrackingState == PLXS.GSF.DTO.Base.BaseDto.TrackingInfo.Created)。 ToList()。Count >   0 
解决方案




Hi, I have encounter the below codes in a reference. May I know what is the Where(r => r.TrackingState) is about? Or more specifically, what is Where( => ) about? Thank you.
Below are the codes:

if (_unitDtoListToGrid.DtoList.Where(r => r.TrackingState == PLXS.GSF.DTO.Base.BaseDto.TrackingInfo.Created).ToList().Count > 0)
解决方案




这篇关于什么是C#中的Where()的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-19 13:20