Index: Application/Ringtoets/src/Application.Ringtoets.Storage/DbContext/DikeProfileEntity.cs =================================================================== diff -u -r182ee751da4cc43bd5d44e816199ded9787f619e -ra294987551b0b2d8a27b6e1bc6235b0e2351b6f4 --- Application/Ringtoets/src/Application.Ringtoets.Storage/DbContext/DikeProfileEntity.cs (.../DikeProfileEntity.cs) (revision 182ee751da4cc43bd5d44e816199ded9787f619e) +++ Application/Ringtoets/src/Application.Ringtoets.Storage/DbContext/DikeProfileEntity.cs (.../DikeProfileEntity.cs) (revision a294987551b0b2d8a27b6e1bc6235b0e2351b6f4) @@ -44,15 +44,15 @@ public long DikeProfileEntityId { get; set; } public long FailureMechanismEntityId { get; set; } public string Name { get; set; } - public double Orientation { get; set; } + public Nullable Orientation { get; set; } public Nullable BreakWaterType { get; set; } public Nullable BreakWaterHeight { get; set; } public byte[] ForeShoreData { get; set; } public byte[] DikeGeometryData { get; set; } - public double DikeHeight { get; set; } - public double X { get; set; } - public double Y { get; set; } - public double X0 { get; set; } + public Nullable DikeHeight { get; set; } + public Nullable X { get; set; } + public Nullable Y { get; set; } + public Nullable X0 { get; set; } public virtual FailureMechanismEntity FailureMechanismEntity { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]