I'm looking at a Beth Massi how to video LINQtoSQLDemo: It uses Northwind db and the Customer table. The Table has 10 columns In her video she has some code that looks like: Private Sub ToolStripButton1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButton1.Click Dim custQuery = From Customer In Db.Customers _ Where Customer.ContactName Like Me .ToolStripTextBox1.Text & "*" _ Order By Customer.CustomerID _ Select Customer Me .CustomerBindingSource.DataSource =
Read More...