Is there any way to deal with scenarios like this:
Is there any way to treat this as null or silently ignore the result?
var cast = SomeDbExpression.Cast(InvalidCastType);
Lets say the value we want to cast is "hello" and we try to cast it to bit.Is there any way to treat this as null or silently ignore the result?