1):LINQ到實體結合,過濾和編輯在結合以下填充只讀WinFrms網格的WinForms
Dim query = (From profile _
In db.profile _
Where profile.employee.employeeId = employeeID _
Select profile.description)
Me.DataGridView.DataSource = profileQueryList
2)綁定到實體本身使得WinForms的網格可編輯的,但未經濾波:
Me.DataGridView.DataSource = db.profile
我需要將#1的過濾功能與#2的可編輯功能組合在一起。
這很酷... = P – Luiscencio 2010-05-14 23:34:35