var results = from myRow in dsPac.AsEnumerable()
where myRow.Field<string>("Package_Name").Equals(lblPackageName.Text)
select myRow;
的dsPac
包含其中對LINQ與數據表
我想選擇對應於Package1712200466
即
數據當我綁定到一個GridView我得到的以下錯誤
DataBinding: 'System.Data.DataRow' does not contain a property
with the name 'Holiday_ID'.
它會拋出任何異常嗎? – 2013-03-16 15:24:29
是編輯了我的問題 – vini 2013-03-16 15:25:58
有兩列如上圖所示 – vini 2013-03-16 15:30:33