在C#中,可以使用LINQ(Language Integrated Query)來查詢集合中的數據。下面是一些常用的LINQ查詢方法:
var result = collection.Where(item => item.Property == value);
var result = collection.Select(item => new { Property1 = item.Property1, Property2 = item.Property2 });
var result = collection.OrderBy(item => item.Property);
var result = collection.GroupBy(item => item.Property);
var result = collection1.Join(collection2, item1 => item1.Property1, item2 => item2.Property2, (item1, item2) => new { Property1 = item1.Property1, Property2 = item2.Property2 });
var result = collection.Any(item => item.Property == value);
以上是一些常用的LINQ查詢方法,通過使用LINQ可以方便地對集合中的數據進行查詢、篩選、排序等操作。