Index: Application/Ringtoets/src/Application.Ringtoets.Storage/Read/Piping/SoilProfileEntityReadExtensions.cs =================================================================== diff -u -rc2bf0666539fa1a781c6d5d633ac292fa4fe2bd4 -r11f0867b39150ae5fac83dc178a89fee46d27611 --- Application/Ringtoets/src/Application.Ringtoets.Storage/Read/Piping/SoilProfileEntityReadExtensions.cs (.../SoilProfileEntityReadExtensions.cs) (revision c2bf0666539fa1a781c6d5d633ac292fa4fe2bd4) +++ Application/Ringtoets/src/Application.Ringtoets.Storage/Read/Piping/SoilProfileEntityReadExtensions.cs (.../SoilProfileEntityReadExtensions.cs) (revision 11f0867b39150ae5fac83dc178a89fee46d27611) @@ -53,10 +53,7 @@ return collector.Get(entity); } IEnumerable layers = entity.SoilLayerEntities.OrderBy(sl => sl.Order).Select(sl => sl.Read()); - var pipingSoilProfile = new PipingSoilProfile(entity.Name, entity.Bottom.ToNullAsNaN(), layers, SoilProfileType.SoilProfile1D, -1) - { - StorageId = entity.SoilProfileEntityId - }; + var pipingSoilProfile = new PipingSoilProfile(entity.Name, entity.Bottom.ToNullAsNaN(), layers, SoilProfileType.SoilProfile1D, -1); collector.Read(entity, pipingSoilProfile); return pipingSoilProfile;