Click here to Skip to main content
15,887,267 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi every om
whis the in , any operators in linq or Lambda
i want select all job id where job_id in (1,2,3)
or how i can send condition

public IQueryable<job_allowance> GetJob_Allowance()
{

return this.ObjectContext.Job_Allowance.Where(ds => ds.Job_ID ---- {1,2,3});
}
thanks for anyhelp
Posted
Comments
Oleksandr Kulchytskyi 1-Jul-12 8:26am    
public IQueryable GetJob_Allowance()
{

return this.ObjectContext.Job_Allowance.Where(ds => ds.Job_ID>=1 && ds.Job_ID<=3);
}

1 solution

C#
public IQueryable GetJob_Allowance()
{   var ListOfIdsA = new List<int>(){1,2,3};
    return this.ObjectContext.Job_Allowance.Where(ds => ListOfIdsA.Contains(ds.Job_ID));
}


If you get job ids from some other table create job id list as below and use that.

C#
var ListOfIdsA = this.ObjectContext.Jobs.Select(j=>j.Job_id).ToList();
 
Share this answer
 
v3
Comments
Mostafa Elsadany 1-Jul-12 9:03am    
i find thath
return this.ObjectContext.Job_Allowance.Where("it.Job_id in {1,3}");
how i can replace {1,3} to sql as select job_id from tablejobe where
thanks for help

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900