LINQ(Language Integrated Query)是C#中用于查詢數據的語言集成查詢功能。其基本語法如下:
var query = from item in collection
where condition
select item;
var query = collection.Where(item => condition).Select(item => item);
其中,collection是要查詢的數據源,item是集合中的每個元素,condition是篩選條件,select用于選擇要返回的結果。LINQ提供了豐富的查詢操作符,包括Where、Select、OrderBy、GroupBy等,可以對數據進行各種操作和轉換。