Index: Ringtoets/Piping/src/Ringtoets.Piping.IO/SoilProfile/StochasticSoilModelReader.cs =================================================================== diff -u -r86e6bb44ba1ccbec534f3fcf379481ea8d45d67f -rd82fa09fe9ae053ce7702ba89ef23ae029640d1b --- Ringtoets/Piping/src/Ringtoets.Piping.IO/SoilProfile/StochasticSoilModelReader.cs (.../StochasticSoilModelReader.cs) (revision 86e6bb44ba1ccbec534f3fcf379481ea8d45d67f) +++ Ringtoets/Piping/src/Ringtoets.Piping.IO/SoilProfile/StochasticSoilModelReader.cs (.../StochasticSoilModelReader.cs) (revision d82fa09fe9ae053ce7702ba89ef23ae029640d1b) @@ -112,7 +112,7 @@ return null; } var stochasticSoilModelSegment = ReadStochasticSoilModelSegment(); - var currentSegmentSoilModelId = stochasticSoilModelSegment.SegmentSoilModelId; + var currentSegmentSoilModelId = stochasticSoilModelSegment.Id; do { // Read Points @@ -122,7 +122,7 @@ stochasticSoilModelSegment.Geometry.Add(point2D); } MoveNext(); - } while (HasNext && ReadStochasticSoilModelSegment().SegmentSoilModelId == currentSegmentSoilModelId); + } while (HasNext && ReadStochasticSoilModelSegment().Id == currentSegmentSoilModelId); return stochasticSoilModelSegment; }