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 …

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

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

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

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

  6. How LINQ works internally? - Stack Overflow

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

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

  8. Linq where clause compare only date value without time value

    The second line is required because LINQ to Entity is not able to convert date property to sql query. So its better to first fetch the data and then apply the date filter. EDIT If you just want to …

  9. LINQ Join with multiple AND conditions - Stack Overflow

    Nov 1, 2013 · I want to join two entities in my MVC application for data Processing through the LINQ join. For that I am trying to write the query like, from enumeration in db.Enumerations …

  10. "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 …