How do I tell the cases when it's worth to use LINQ?
- by Lijo
Many things in LINQ can be accomplished without the library. But for some scenarios, LINQ is most appropriate.
Examples are:
SELECT - http://stackoverflow.com/questions/11883262/wrapping-list-items-inside-div-in-a-repeater
SelectMany, Contains - http://stackoverflow.com/questions/11778979/better-code-pattern-for-checking-existence-of-value
Enumerable.Range - http://stackoverflow.com/questions/11780128/scalable-c-sharp-code-for-creating-array-from-config-file
WHERE http://stackoverflow.com/questions/13171850/trim-string-if-a-string-ends-with-a-specific-word
What factors to take into account when deciding between LINQ and regular .Net language elements?