I have Sitecore folder named MyItems with items of type MyItem. I need to query the items from .net code either with sitecore query or with xpath. MyItem has field MyField of type TreelistEx. I need to select all items where MyField contains 'thevalue' (guid of other item). How can i do it?

Thanks a lot

link|improve this question

71% accept rate
feedback

2 Answers

up vote 1 down vote accepted
string query = string.Format("/sitecore/content/MyItems/*[contains(@MyField,'{0}')]", thevalue);
Item[] myItems = Sitecore.Context.Database.SelectItems(query);

I just pulled this code from my site and adjusted the names for your query. It is fairly inefficient if you have a lot of MyItems, so I wouldn't use this on a page where performance is key. The same query should work for any list-type field.

link|improve this answer
I put guid there: /sitecore/content/MyItems/*[contains(@MyField,'{33A77F25-8327-46B4-96FE-6652B8E4‌​0BD1}')] and it returns nothing (the element with this guid exists). Which way do you consider more efficient: fast query or something else? Thank you – idm Jul 1 '11 at 8:02
it works, thank you – idm Jul 1 '11 at 8:54
feedback

You may want to use fast query as well

string query = string.Format("fast:/sitecore/content/MyItems/*[contains(@MyField,'{0}')]", thevalue);
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.