Linq查詢datatable的記錄集合,linq查詢datatable

來源:互聯網
上載者:User

Linq查詢datatable的記錄集合,linq查詢datatable

通過linq查詢datatable資料集合滿足條件的資料集

1.首先定義查詢欄位的變數,比如深度

string strDepth=查詢深度的值;

 var dataRows = from datarow in dataTable(需要查詢的datatable資料集).AsEnumerable()
                           where
                               string.Compare(datarow.Field<string>("查詢欄位,比如深度欄位"), strDepth) >= 100 &&
                               string.Compare(datarow.Field<string>("查詢欄位,比如深度欄位"), strDepth) <=200
                           select new
                                   {
                                       DT中深度欄位名稱= datarow["查詢的欄位,比如深度欄位"].ToString(),                                      
                                   };

2.直接調用上面的linq語句後,上述linq 意思是查詢欄位深度值的範圍是100-200,可以根據自己的項目要求進行重新查詢欄位

著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.