Does anybody know how to apply a \"where in values\" type condition using LINQ-to-Entities? I\'ve tried the following but it doesn\'t work:
var values = new
Using the where method doesn't alway work
var results = from p in db.Products where p.Name == nameTextBox.Text select p;