ตั้งค่าอาร์เรย์ int[] arr = { 40, 42, 12, 83, 75, 40, 95 }; ใช้คำสั่ง Where และเพรดิเคตเพื่อให้ได้องค์ประกอบที่สูงกว่า 50 IEnumerable<int> myQuery = arr.AsQueryable() .Where((a, index) => a >= 50); ให้เราดูรหัสที่สมบูรณ์ - ตัวอย่าง using System; using System.Linq; using System.Collecti