1) Binding to The following populates a READ ONLY WinFrms grid:
Dim query = (From profile _
In db.profile _
Where profile.employee.employeeId = employeeID _
Select profile.description)
Me.DataGridView.DataSource = profileQueryList
2) Binding to the entity itself makes the WinForms grid EDITABLE, but unfiltered:
Me.DataGridView.DataSource = db.profile
I need something that combines the filtering feature of #1 with the editable feature of #2.