About 50 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 querying language.

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

  3. c# - What is the "=>" sign in LINQ queries? - Stack Overflow

    Apr 10, 2015 · When you use it in a linq expression, think of it as though the lambda function is being called on every element in the collection (which I believe is exactly what happens with linq to objects).

  4. 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<State> Wherein(string listofcountrycodes) { ...

  5. How LINQ works internally? - Stack Overflow

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

  6. 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...

  7. LINQ Where with AND OR condition - Stack Overflow

    Jan 11, 2016 · LINQ Where with AND OR condition Asked 16 years, 3 months ago Modified 6 years, 7 months ago Viewed 200k times

  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 elsewhere (yay for …

  9. "Or" equivalent in Linq Where () lambda expression

    Jan 3, 2018 · Given an existing Linq query you can add a where clause that takes an array of strings (SearchStrings), and check if any of them match whatever object in the collection you're search.

  10. c# - LIKE operator in LINQ - Stack Overflow

    Mar 21, 2011 · Is there any way to compare strings in a C# LINQ expression similar to SQL's LIKE operator? Suppose I have a string list. On this list I want to search a string. In SQL, I could write: …