Index: Application/Ringtoets/src/Application.Ringtoets.Storage/DbContext/DuneLocationOutputEntity.cs =================================================================== diff -u -r5e44a4eb7c69ccaca763dce7cd7735e33a1f3c85 -r5fa8aef400798363971b419cd20171a7bf6076e1 --- Application/Ringtoets/src/Application.Ringtoets.Storage/DbContext/DuneLocationOutputEntity.cs (.../DuneLocationOutputEntity.cs) (revision 5e44a4eb7c69ccaca763dce7cd7735e33a1f3c85) +++ Application/Ringtoets/src/Application.Ringtoets.Storage/DbContext/DuneLocationOutputEntity.cs (.../DuneLocationOutputEntity.cs) (revision 5fa8aef400798363971b419cd20171a7bf6076e1) @@ -28,21 +28,19 @@ // //------------------------------------------------------------------------------ -using System; - namespace Application.Ringtoets.Storage.DbContext { - public partial class DuneLocationOutputEntity + public class DuneLocationOutputEntity { public long DuneLocationOutputEntityId { get; set; } public long DuneLocationEntityId { get; set; } - public Nullable WaterLevel { get; set; } - public Nullable WaveHeight { get; set; } - public Nullable WavePeriod { get; set; } - public Nullable TargetProbability { get; set; } - public Nullable TargetReliability { get; set; } - public Nullable CalculatedProbability { get; set; } - public Nullable CalculatedReliability { get; set; } + public double? WaterLevel { get; set; } + public double? WaveHeight { get; set; } + public double? WavePeriod { get; set; } + public double? TargetProbability { get; set; } + public double? TargetReliability { get; set; } + public double? CalculatedProbability { get; set; } + public double? CalculatedReliability { get; set; } public byte CalculationConvergence { get; set; } public virtual DuneLocationEntity DuneLocationEntity { get; set; }