VS2008, C#

In several of my business objects, I'm lazily loading some data that requires a call to the DB. This presents a problem when trying to quick watch the parent object. When it hits that property it tries to load that data only to time out and cause all the subsequent properties to fail to display as well, even if they're simple.

My question is, is there an attribute or something I can put on those properties to tell the IDE to NOT evaluate those properties during a quick watch?

Thanks!

ope