About 50 results
Open links in new tab
  1. c# - Proper LINQ where clauses - Stack Overflow

    Apr 27, 2015 · When this is a linq-to-object call, multiple where clauses will lead to a chain of IEnumerables that read from each other. Using the single-clause form will help performance here. …

  2. c# - What is LINQ and what does it do? - Stack Overflow

    Aug 2, 2018 · LINQ is a technology for extracting data using an idiom derived from the C# programming language. While it owes much in functional design to SQL, it is fundamentally its own data querying …

  3. How LINQ works internally? - Stack Overflow

    Mar 22, 2009 · I love using LINQ in .NET, but I want to know how that works internally?

  4. c# - "IN" Operator in Linq - Stack Overflow

    Feb 1, 2013 · I am trying to convert an old raw Sql query in Linq with Entity Framework here. It was using the IN operator with a collection of items. The query was something like that: SELECT …

  5. How can I conditionally apply a Linq operator? - Stack Overflow

    Aug 14, 2008 · We're working on a Log Viewer. The use will have the option to filter by user, severity, etc. In the Sql days I'd add to the query string, but I want to do it with Linq. How can I conditionally add...

  6. LINQ Where with AND OR condition - Stack Overflow

    Jan 11, 2016 · I do not want to use switch or If condition. Thanks linq linq-to-sql where-clause Improve this question asked Nov 12, 2009 at 2:19 Zeus

  7. Newest 'linq' Questions - Stack Overflow

    Mar 24, 2026 · When running LINQ queries such as Where, Except, Intersect, Union, and FirstOrDefault on a List, the memory profiler shows an instance of ObjectEqualityComparer being retained and …

  8. c# - Join/Where with LINQ and Lambda - Stack Overflow

    Posting because when I started LINQ + EntityFramework, I stared at these examples for a day. If you are using EntityFramework, and you have a navigation property named Meta on your Post model …

  9. Pros and Cons of LINQ (Language-Integrated Query)

    Apr 25, 2017 · Wide range of operators provided by default, and others can easily be added for LINQ to Objects Language features introduced primarily for LINQ are widely applicable elsewhere (yay for …

  10. c# - LEFT OUTER JOIN in LINQ - Stack Overflow

    Apr 11, 2014 · How to perform left outer join in C# LINQ to objects without using join-on-equals-into clauses? Is there any way to do that with where clause? Correct problem: For inner join is easy and I …