Is this gonna work with multi-value properties? This is my problem. Because doing [EMAIL PROTECTED]:property = 1] would mean to me: does the property have the value 1, and not does the property contain the value 1 (as would be the case for mult-value properties).
./alex -- .w( the_mindstorm )p. On 3/16/06, Marcel Reutegger <[EMAIL PROTECTED]> wrote: > > 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 >