What are some clever uses for LINQ outside of LINQ to SQL?
Have you found any problems that LINQ made a whole lot easier to solve? Please post examples.
|
14
|
|
|
|
|
|
|
||
|
|
|
Robert Shelton of Microsoft was cool enough to list a few LINQ implementations for us: As of month 7, 2008:
|
|||
|
|
|
I love the site blog.functionalfun.net for this exact purpose: the practical (and less practical, more fun) uses of LINQ. Ultimately, nearly everything he covers can be applied to real life situations, but he's started blogging blogging more "Practical LINQ" subjects for things he uses in business logic code that's interesting. |
||
|
|
|
Bart De Smet's blog has some clever uses of LINQ such as Who ever said LINQ predicates need to be Boolean-valued?. |
||
|
|
|
|
You should also check out Bindable LINQ, from the CodePlex site:
Here's one of the examples from the site:
|
||
|
|
|
|
Linq to Excel makes it a breeze to retrieve data from Excel spreadsheets. It takes care of creating the OLEDB connection and sql statement. All you have to do is tell it the file path to the spreadsheet and create the linq statement. |
||
|
|
|
|
I'm rather surprised that Jon didn't mention his own.... Silly and clever at the same time ;-) Edit: oooh I forgot about this one as well. Ray tracing using Linq. |
|||
|
|
|
|
Chalie Calvert blog has listing of some good linq providers . I mention this because it exposes lot of challenges implementing linq provider to solve a complex problem |
|||
|
|