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);