Index: Application/Ringtoets/src/Application.Ringtoets.Storage/Create/AssessmentSectionCreateExtensions.cs =================================================================== diff -u -r01ff2c58c13df8f42661ae3e446dc2caaa94247e -r508d720230c5f63bce7f95bddc3b7a04808d267d --- Application/Ringtoets/src/Application.Ringtoets.Storage/Create/AssessmentSectionCreateExtensions.cs (.../AssessmentSectionCreateExtensions.cs) (revision 01ff2c58c13df8f42661ae3e446dc2caaa94247e) +++ Application/Ringtoets/src/Application.Ringtoets.Storage/Create/AssessmentSectionCreateExtensions.cs (.../AssessmentSectionCreateExtensions.cs) (revision 508d720230c5f63bce7f95bddc3b7a04808d267d) @@ -21,6 +21,7 @@ using System; +using Application.Ringtoets.Storage.BinaryConverters; using Application.Ringtoets.Storage.Create.ClosingStructure; using Application.Ringtoets.Storage.Create.DuneErosion; using Application.Ringtoets.Storage.Create.GrassCoverErosionInwards; @@ -102,11 +103,7 @@ { if (section.ReferenceLine != null) { - var i = 0; - foreach (var point2D in section.ReferenceLine.Points) - { - entity.ReferenceLinePointEntities.Add(point2D.CreateReferenceLinePointEntity(i++)); - } + entity.ReferenceLinePointData = new Point2DBinaryConverter().ToBytes(section.ReferenceLine.Points); } }