If I have a certain number of webs within my site collection, and those web have set some property, eg. web.Properties["foo"] = "bar". I'd like to get list of all the webs which have property foo set to bar. How can I do that?
One way is to iterate through all webs, but that doesn't seem efficient. What other possibilities do I have?