Rather than OrangeList(someCriteria), I'd have OrangeCriteria1ListOranges.Criteria1List, OrangeCriteria2ListOranges.Criteria2List. For a singleton, I'd have Oranges.GetItem(orangeId).
Doing it your way, the BusinessObject ends up needing to think in logical data design terms rather than conceptual terms.
(Repository implementations cause me the same discomfort - too often all they are used for is to put a thin-abstraction thick-code layer over the tables. I don't like the BL to ever be required to know about database implementation details like data types and sizes. Too often it's useful to decouple these kinds of dependencies.)
