I've been struggling with this Sitecore query code. All items are published, the query works in XPath Builder, but it always returns 0 results in the code behind. I copied this from code samples that no one else complained about and still get no results. I tried appending with "query:" but it throws a syntax error.

string query = "/sitecore/content/ShrinersHospital2/CareAndTreatment//*[@@templatename = 'CareAndTreatmentType' and @TreatmentType = '{ECDBE944-99DE-4347-8FA2-6613FA85402C}']"; 

Item[] items = Sitecore.Context.Database.SelectItems(query); 
link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

This particular issue has to do with publishing issues. The queried item had it's template modified and the Incremental Publish failed to push the changes correctly. A Smart Publish made the code start working.

I was also informed that when something like this happens I should test on both databases using code as follows:

Database master = Factory.GetDatabase("master"); 
master.SelectItems(query); 

Database web = Factory.GetDatabase("web"); 
web.SelectItems(query); 
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.