WHERE- IN Clause for MVC C#
WHERE- IN Clause for MVC C#
rshun
Posts: 44Questions: 9Answers: 0
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