Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How to write LINQ query for Inner Join with OR condition?



How to write LINQ query for Inner Join with OR condition?..

Answer / Vineeta

To perform an inner join with an OR condition in LINQ, you can use the `||` operator within the where clause. Here is an example: n```csharpnvar result = employees1.Join(employees2, e1 => e1.Id, e2 => e2.Id, (e1, e2) => new { Id = e1.Id, Name = e1.Name }) .Where(row => row.Id == 1 || row.Id == 2);n```

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More LINQ Language-Integrated Query Interview Questions

What is the extension of the file, when LINQ to SQL is used?

1 Answers   Arigo Infotech,


What is meant by linq in c#?

1 Answers  


Explain how you can differentiate between Conversion Operator “ToDictionary” and “IEnumerable” of LINQ?

1 Answers  


How to use Having in LINQ?

1 Answers  


How standard query operators useful in linq?

1 Answers  


What is linq and why use it?

1 Answers  


What is the difference between FirstOrDefault() and SingleOrDefault() extension method in LINQ ?

1 Answers  


Explain what are linq compiled queries?

1 Answers  


Why is linq useful?

1 Answers  


What is the difference between First() and Single() extension methods in LINQ?

1 Answers   TryTechnicals Pvt Ltd,


What do you understand by linq?

1 Answers  


How to write not in query in linq?

1 Answers  


Categories