Unable to step into or break in method called inside Linq query/expression
问题 I have encountered a bizarre issue trying to step into a method called from within a Linq query (although I also experience the problem when using a Linq expression). The code compiles, AND it appears to work (I get the outcome I was expecting). IEnumerable<TagBuilder> theOutcome = from r in resultSet select GetTableDataRow(null); OR IEnumerable<TagBuilder> theOutcome = resultSet.Select(r => GetTableDataRow(null)); The method being called is defined as follows: private static TagBuilder