How to Use Two where Condition in LINQ Query in C#

  1. using System;  
  2. using System.Linq;  
  3. namespace CSharpLINQ  
  4. {  
  5.     class SimpleQuery  
  6.     {  
  7.         static void Main()  
  8.         {  
  9.             int[] numbers = {  
  10.                 1, -2, 3, -3, 0, -8, 12, 19, 6, 9, 10  
  11.             };  
  12.             var query = from n in numbers where n > 0 where n < 12 select n;  
  13.             foreach(var q in query)  
  14.             Console.Write("{0}\t", q);  
  15.         }  
  16.     }  
  17. }  
Answer:

1 3 6 9 10