Index: Application/Ringtoets/src/Application.Ringtoets.Storage/DbContext/SurfaceLinePointEntity.cs =================================================================== diff -u -r24cf947dc2fc0c56fb917b989bc4ad2ccb27bcae -r9e1b97e9540df6cbd635120135c83de0260aa6d1 --- Application/Ringtoets/src/Application.Ringtoets.Storage/DbContext/SurfaceLinePointEntity.cs (.../SurfaceLinePointEntity.cs) (revision 24cf947dc2fc0c56fb917b989bc4ad2ccb27bcae) +++ Application/Ringtoets/src/Application.Ringtoets.Storage/DbContext/SurfaceLinePointEntity.cs (.../SurfaceLinePointEntity.cs) (revision 9e1b97e9540df6cbd635120135c83de0260aa6d1) @@ -38,12 +38,7 @@ [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] public SurfaceLinePointEntity() { - this.DitchPolderSidePointParentEntity = new HashSet(); - this.DitchDikeSidePointParentEntity = new HashSet(); - this.DikeToeAtRiverPointParentEntity = new HashSet(); - this.DikeToeAtPolderPointParentEntity = new HashSet(); - this.BottomDitchPolderSidePointParentEntity = new HashSet(); - this.BottomDitchDikeSidePointParentEntity = new HashSet(); + this.CharacteristicPointEntities = new HashSet(); } public long SurfaceLinePointEntityId { get; set; } @@ -54,17 +49,7 @@ public decimal Z { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] - public virtual ICollection DitchPolderSidePointParentEntity { get; set; } - [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] - public virtual ICollection DitchDikeSidePointParentEntity { get; set; } - [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] - public virtual ICollection DikeToeAtRiverPointParentEntity { get; set; } - [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] - public virtual ICollection DikeToeAtPolderPointParentEntity { get; set; } - [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] - public virtual ICollection BottomDitchPolderSidePointParentEntity { get; set; } - [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] - public virtual ICollection BottomDitchDikeSidePointParentEntity { get; set; } + public virtual ICollection CharacteristicPointEntities { get; set; } public virtual SurfaceLineEntity SurfaceLineEntity { get; set; } } }