Привязка ячеек прибора к точке учета

На форуме уже есть тема про привязку ячеекhttps://forum.lers.ru/viewtopic.php?f=16&t=9167&p=59140&hilit=DeviceBinding#p59140
Но она не описывает весь процесс. Вот мой кусок кода

            var measurePointList = lersServer.MeasurePoints.GetList();
            var measurePoint = measurePointList[0];
            measurePoint.Refresh(Lers.Core.MeasurePointInfoFlags.Equipment);
            var cells = measurePoint.Device.Model.DataInterface.Driver.Cells;
            var parameter = System.Tuple.Create(Lers.Data.DataParameter.V_out,Lers.Data.DeviceDataType.None);
            Lers.Core.MeasurePointCellBinding cellBinding = new Lers.Core.MeasurePointCellBinding(cells[1]);
            measurePoint.DeviceBinding.Cells.Add(parameter, cellBinding);
            measurePoint.SaveAsync().Wait();

Он вызывает нетипичную ошибку в системном журнале.
Необработанная ошибка в сервере. Ошибка выполнения запроса PUT http://localhost:10000/api/v0.1/Core/MeasurePoints/612.
An error occurred while updating the entries. See the inner exception for details. The INSERT statement conflicted with the FOREIGN KEY constraint “FK_DeviceCell_Unit”. The conflict occurred in database “LERS”, table “dbo.Unit”, column ‘Unit_ID’.
The statement has been terminated. An error occurred while updating the entries. See the inner exception for details. The INSERT statement conflicted with the FOREIGN KEY constraint “FK_DeviceCell_Unit”. The conflict occurred in database “LERS”, table “dbo.Unit”, column ‘Unit_ID’.
The statement has been terminated. Разработчикам был отправлен отчет об ошибке.

Помогите разобраться пожалуйста.

Уточните, пожалуйста, какая версия ЛЭРС УЧЕТ у вас установлена?

3.42.1

Пожалуйста, пришлите весь проект, выполняющий добавление ячейки. Можно в ЛС.

К чему такая сложность? Я не прошу разобраться с моими ошибками. Мне просто нужен пример правильного кода для привязки ячейки? Я бы не спрашивал, если бы в предыдущей теме нашел нужную информацию.

Во вложении проект с примером привязки ячеек.
ConsoleApp3.rar (1.76 KB)

Благодарю, теперь все получилось.

Очень хорошо. Тогда тему закрываю.