We use the code below to get Sitecore items using a quick request:
db.SelectItems("/sitecore/content/test//*[@@templatename='test template name']");
But the problem with this code is that it gets elements from all language versions.
Is there a way to pass a language parameter for a quick query, or how can we get the elements of a specified version of a language using a quick query?
Thanks in advance.
source
share