WHERE- IN Clause for MVC C#
WHERE- IN Clause for MVC C#
![rshun](https://secure.gravatar.com/avatar/b238ea9fe6ac96cfd939d684caffa6c1/?default=https%3A%2F%2Fvanillicon.com%2Fb238ea9fe6ac96cfd939d684caffa6c1_200.png&rating=g&size=120)
I look at that discussion
https://datatables.net/forums/discussion/43542
There is where in for PHP.
Is it exist in C# (MVC)? If yes, how can I call it.
Thanks,
Rick
This discussion has been closed.
Answers
Ok. I try
.Where(q => q.Where("Site", "('ABC', 'XYZ')", "IN", false)) in C#.
It is working.
Rick