$Informationsystem_Controller_Show = new Informationsystem_Controller_Show(
Core_Entity::factory('Informationsystem', 2)
);
$Informationsystem_Controller_Show
->xsl(
Core_Entity::factory('Xsl'

->getByName('СписокНовостейНаГлавной'

)
->groupsMode('none'

->itemsForbiddenTags(array('text'

)
->group(FALSE)
->limit(5)
;
// Объединение с нужной таблицей свойств
$Informationsystem_Controller_Show
->informationsystemItems()
->queryBuilder()
->leftJoin('informationsystem_item_properties', 'informationsystem_items.informationsystem_id', '=', 'informationsystem_item_properties.informationsystem_id'

->leftJoin('property_value_ints', 'informationsystem_items.id', '=', 'property_value_ints.entity_id',
array(
array('AND' => array('informationsystem_item_properties.property_id', '=', Core_QueryBuilder::expression('`property_value_ints`.`property_id`'

))
)
)
// Идентификатор дополнительного свойства
->where('informationsystem_item_properties.property_id', '=', 60)
// Значание дополнительного свойства
->open()
->where('property_value_ints.value', '=', '0'

->setOr()
->where('property_value_ints.value', 'IS', NULL)
->close()
->groupBy('informationsystem_items.id'

// Количество свойств
->having('COUNT(informationsystem_item_properties.informationsystem_id)', '=', 1)
;
$Informationsystem_Controller_Show
->show();