Index: Application/Ringtoets/src/Application.Ringtoets.Storage/DbContext/AssessmentSectionEntity.cs =================================================================== diff -u -r21d94a2cc5a3a916d02a441f80414455b80d85dc -r508d720230c5f63bce7f95bddc3b7a04808d267d --- Application/Ringtoets/src/Application.Ringtoets.Storage/DbContext/AssessmentSectionEntity.cs (.../AssessmentSectionEntity.cs) (revision 21d94a2cc5a3a916d02a441f80414455b80d85dc) +++ Application/Ringtoets/src/Application.Ringtoets.Storage/DbContext/AssessmentSectionEntity.cs (.../AssessmentSectionEntity.cs) (revision 508d720230c5f63bce7f95bddc3b7a04808d267d) @@ -40,7 +40,6 @@ { this.FailureMechanismEntities = new HashSet(); this.HydraulicLocationEntities = new HashSet(); - this.ReferenceLinePointEntities = new HashSet(); } public long AssessmentSectionEntityId { get; set; } @@ -52,13 +51,12 @@ public string HydraulicDatabaseVersion { get; set; } public string HydraulicDatabaseLocation { get; set; } public short Composition { get; set; } + public byte[] ReferenceLinePointData { get; set; } public virtual ProjectEntity ProjectEntity { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection FailureMechanismEntities { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection HydraulicLocationEntities { get; set; } - [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] - public virtual ICollection ReferenceLinePointEntities { get; set; } } }