Is it possible to handle exceptions within LINQ queries?

.net, c#, exception, linq

Solution

myEnumerable.Select(a => 
  {
    try
    {
      return ThisMethodMayThrowExceptions(a));
    }
    catch(Exception)
    {
      return defaultValue;
    }
  });

But actually, it has some smell.

About the lambda syntax:

x => x.something

is kind of a shortcut and could be written as

(x) => { return x.something; }

Problem

Example: ``` myEnumerable.Select(a => ThisMethodMayThrowExceptions(a)); ``` How to make it work even if it throws exceptions? Like a try catch block with a default value case an exceptions is thrown...

Original source