Dim editEmployee = (From c In Employee _
Where (c.lastName = txtLastName.Text And c.firstName = txtFirstName.Text))
Select c).Single()
I'm getting errors with this particular syntax. Trying to retrieve a single row for employee that matches first and last name.