即由2列:roomType和無房如何使用LINQ查詢中獲取價值DataTable中
所以我想從房型沒有酒店的房間,我有。
在SQL它的外觀像這樣:
SELECT no_rooms from table name where roomtype = 'deluxe'
結果:2
如何訪問,在LINQ查詢和存儲值作爲int數據類型?
我只知道這個代碼
string[] tableName = table.AsEnumerable()
.Select(s => s.Field<string>("NoRooms"))
.ToArray<string>()
.Where(?idont_know_the_query));