Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

LINQ ส่งคืนอะไรเมื่อผลลัพธ์ว่างเปล่าใน C #


Language-Integrated Query (LINQ) เป็นชื่อของชุดของเทคโนโลยีที่อิงจากการรวมความสามารถในการสืบค้นเข้ากับภาษา C# โดยตรง

คุณสามารถเขียนคำสั่ง LINQ ใน C# สำหรับฐานข้อมูล SQL Server, เอกสาร XML, ชุดข้อมูล ADO.NET และคอลเลกชันของอ็อบเจ็กต์ใดๆ ที่สนับสนุนอินเทอร์เฟซ IEnumerable หรือ IEnumerable ทั่วไป

ใน Linq-to-SQL หากคุณพยายามรับองค์ประกอบแรกในแบบสอบถามที่ไม่มีผลลัพธ์ คุณจะได้ลำดับที่ไม่มีข้อผิดพลาดขององค์ประกอบ

ToList ส่งคืนรายการว่าง

ตัวอย่าง

class Program{
   public static void Main(){
      List<string> list = new List<string> { "a" };
      IEnumerable<string> ilist = list.Where(x => x == "ABC").ToList();
      System.Console.WriteLine(ilist.Count());
      foreach (var item in ilist){
         System.Console.WriteLine(item);
      }
      Console.ReadLine();
   }
}

ผลลัพธ์

0

ตัวอย่าง

class Program{
   public static void Main(){
      List<int> list = new List<int> { 1 };
      IEnumerable<int> ilist = list.Where(x => x == 3).ToList();
      System.Console.WriteLine(ilist.Count());
      foreach (var item in ilist){
         System.Console.WriteLine(item);
      }
      Console.ReadLine();
   }
}

ผลลัพธ์

0