Below is a sample code snippet demonstrating on how to use “Or” Operator in the Where Clause of Linq in C#?
Using or Operator in the Where Clause of LINQ in C#
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
namespace AbundantCode
{
internal class Program
{
//Using Or Operator in the Where Clause of LINQ in C#
private static void Main(string[] args)
{
List<string> Names = new List<string>();
Names.Add("Abundantcode");
Names.Add("Programming");
Names.Add("Websites");
Names.Add("Coding");
Names.Add("Technologies");
Names.Add("USA");
Names.Add("C#");
Names.Add(".NET");
var result = from m in Names
where m == "Abundantcode" || m == "Websites"
select m;
foreach(var item in result)
Console.WriteLine(item);
Console.ReadLine();
}
}
}
Leave a Reply