I have basically to select all employee from companies which are being passed so a variable -
CompanyListIds
- Contains list of all company ids..
var result=DataContext.Employee(e=>e.CompanyId==companyId).ToList();
The above is a query I have for selecting from one company, now how would I modify it to compare with all the companyids that would be passed..how would I use contains
maybe here..Thanks..