Questions tagged [linq]

Language Integrated Query (LINQ) is a Microsoft .NET Framework component that adds native data querying capabilities to .NET languages, although ports exist for Java, PHP, JavaScript and ActionScript.

Description is taken from Wikipedia:

LINQ defines a set of method names (called standard query operators, or standard sequence operators), along with translation rules from so-called query expressions to expressions using these method names, lambda expressions and anonymous types. These can, for example, be used to project and filter data into arrays, enumerable classes, XML (LINQ to XML), relational databases, and third party data sources. Other uses, which use query expressions as a general framework for composing readable arbitrary computations, include the construction of event handlers or monadic parsers.

89 questions
12
votes
5 answers

LINQPad still being used much out there?

I'm trying to guage how popular and how used LINQPad is today. I'm just wondering if it's still a useful tool or not as VS and other tools have gotten better. Furthermore, I am coding over LLBGen by working with LINQ to SQL. I see there is a…
WeDoTDD.com
  • 507
  • 1
  • 4
  • 12
2
votes
1 answer

Why does Linq to Entity Sum return null when the result set is empty?

There are quite a few questions on Stack Overflow about the Linq to Entity / Linq to SQL Sum extension method, about how it returns null when the result set is empty: 1, 2, 3, 4, 5, 6, 7, and many more, as well as a blog post discussing the issue…
Hannele
  • 135