Index: Application/Ringtoets/src/Application.Ringtoets.Storage/Read/Piping/SoilProfileEntityReadExtensions.cs =================================================================== diff -u -ra294987551b0b2d8a27b6e1bc6235b0e2351b6f4 -r61af2d41d88907e33ced4083ec53c2327718fd9a --- Application/Ringtoets/src/Application.Ringtoets.Storage/Read/Piping/SoilProfileEntityReadExtensions.cs (.../SoilProfileEntityReadExtensions.cs) (revision a294987551b0b2d8a27b6e1bc6235b0e2351b6f4) +++ Application/Ringtoets/src/Application.Ringtoets.Storage/Read/Piping/SoilProfileEntityReadExtensions.cs (.../SoilProfileEntityReadExtensions.cs) (revision 61af2d41d88907e33ced4083ec53c2327718fd9a) @@ -54,7 +54,7 @@ { return collector.Get(entity); } - IEnumerable layers = entity.SoilLayerEntities.Select(sl => sl.Read()); + 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