Debugger option to step over mapping methods
A common pattern in my code is to use a mapping method to lazily initialise something. E.g.:
customer := app.myRoot.getCustomerById(customerId);
where myRoot is a property on app with a mapping method.
When debugging, trying to step into the getCustomerById method results in first stepping into the mapping method. It would be great if there were a debugger option that allowed mapping methods to not be entered. This is similar to the option in Visual Studio to not step into property get/set methods.
The exception would be if there was an explicit breakpoint set in a mapping method - in this case it would still be hit.