I am trying to figure out how to do exception handling when using LINQ. Currently I have a business class that calls into a web service that returns xml. I use LINQ to then construct business objects that are returned to my web ui. However I'm finding that, for example, when the xml is malformed coming back from the web service, that the error only gets thrown when I data bind on my web ui. I'm doing declarative databinding using a LINQ Data source. The only way around this because of LINQ delayed
Read More...