1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
contactupdateservice.php
См. документацию.
1<?php
2
3namespace Bitrix\Sender\Service;
4
5use Bitrix\Sender\ContactTable;
6use Bitrix\Sender\Internals\Dto\UpdateContactDtoCollection;
7use Bitrix\Sender\Internals\SqlBatch;
8
10{
18 public function updateByCollection(UpdateContactDtoCollection $collection): void
19 {
20 foreach (SqlBatch::divide($collection->toArray()) as $list)
21 {
22 SqlBatch::insert(
24 $list,
25 $collection->getOnDuplicateKeyUpdateFields(),
27 );
28 }
29 }
30}
static getConflictFields()
Определения contact.php:618
static getTableName()
Определения contact.php:53
updateByCollection(UpdateContactDtoCollection $collection)
Определения contactupdateservice.php:18