I have an object called SearchCriteria with about 20 attributes, each one being a criteria via which one could search.
I need to build a db query based on any of these criteria. I'd like to programmatically loop through the object's attributes
testing each one for null and then taking action on the ones that are not null. How do you programmatically loop through an object's attributes?
TDR