I know how to do a where in Qlink... p.e.
public ActionResult Index(){
using (DBEntities db = new DBEntities())
{
return View(db.vw_values.Where(m => m.value == 1).ToList());
}
}
but I want to do a Where in but I´ve not found how to implement it... p.e.
... int[] values = {1,2,3, ...}
return View(db.vw_values.Where(m => m.value == values).ToList()); ...
is it posible? (The idea, I know that this code is wrong)