About 16,200,000 results
Open links in new tab
  1. c# - What is LINQ and what does it do? - Stack Overflow

    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 …

  2. 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 …

  3. LINQ .Any VS .Exists - What's the difference? - Stack Overflow

    The difference is that Any is an extension method for any IEnumerable<T> defined in System.Linq.Enumerable. It can be used on any IEnumerable<T> instance. Exists does not …

  4. LINQ: Select an object and change some properties without …

    I want to change some properties of a LINQ query result object without creating a new object and manually setting every property. Is this possible? Example: var list = from something in …

  5. LINQ Where with AND OR condition - Stack Overflow

    Jan 11, 2016 · LINQ Where with AND OR condition Asked 16 years, 1 month ago Modified 6 years, 5 months ago Viewed 199k times

  6. c# - Where IN clause in LINQ - Stack Overflow

    Jun 6, 2009 · How to make a where in clause similar to one in SQL Server? I made one by myself but can anyone please improve this? public List&lt;State&gt; Wherein(string …

  7. 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: …

  8. 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 …

  9. c# - How to do a subquery in LINQ? - Stack Overflow

    In my experience for reasonably complex queries, the way you write linq queries makes a difference sql server 2005 sometimes doesn't produce an optimal query plan for queries with …

  10. Linq: adding conditions to the where clause conditionally

    Linq: adding conditions to the where clause conditionally Asked 13 years, 6 months ago Modified 5 years, 9 months ago Viewed 152k times