[TYPO3-english] extbase: searching in a list field

Arno Dudek webmaster at adgrafik.at
Thu Apr 26 13:40:12 CEST 2012


Answer myself:

It looks like this will not supported. I do it like this now.

$reservations = $query->matching(
	$query->logicalOr(
		$query->equals('run', '27'),
		$query->like($'run', '27,%'),
		$query->like($'run', '%,27'),
		$query->like($'run', '%,27,%')
	)
)->execute();

lg arno


More information about the TYPO3-english mailing list