This example demonstrates how to check multiple values using Linq to find out the required result, by using Contains () Method you can find out the required result which is equivalent to WHERE IN type query in T-SQL. I will extend my pervious example "Display total price in Repeater footer in asp.net using jquery" to continue this example.
Here’s is the simple code snippet.
var result = from i in Display()
where new string[] { "Sharepoint 2010 Administration", "HTML 5" }.Contains(i.Title)
select i;