I have this part of code:
ViewBag.myFeedbacks = db.feedbacks.Where(f => f.project_id ?)
what should I replace char ? , when I want define something like this :
project_id IN (1,2,3)
so, select all feedback, which have project_id from list of values?