Is it possible to get Nhibernate linq to generate a query with an “In” clause? e.g. – Where AnID in (x,y,z)?
Is it possible to get Nhibernate linq to generate a query with an In
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I don’t know the state of nHibernate with respect to generating all the potential LINQ queries, but you should be able to use
.Contains()to generate an IN.