これが私のlinqステートメントです。基本的に私はゼロアイテムを見たくありません。はい、私はそれがこのように見える状況を理解していますが、私は>0のアイテムを見る必要があります。どうやってやるの?
コンテンツ.Select(x => new {RelatedContents = x.RelatedContents})
Count
または使用できますAny
カウントの使用:
Contents.Select( x=> new { RelatedContents = x.RelatedContents } ).Where(c => c.RelatedContents.Count() > 0);
任意の使用:
Contents.Select( x=> new { RelatedContents = x.RelatedContents } ).Where(c => c.RelatedContents.Any());
Contents.Select( x=> new { RelatedContents = x.RelatedContents } )
.Where(y => y.RelatedContents.Any());