Alexandru Popescu wrote:
Does the jcr:contains works against multi-value properties too? I have a
multi-value property that contains long values, and I wonder if I can
something like:

//*[jcr:contains(@my:property, '1')]

long values are not fulltext indexed. You have to use the comparison operators:

//[EMAIL PROTECTED]:property = 1]

or

//[EMAIL PROTECTED]:property eq 1]



regards
 marcel

Reply via email to