Index: Application/Ringtoets/src/Application.Ringtoets.Storage/DbContext/MacrostabilityOutwardsSectionResultEntity.cs =================================================================== diff -u -r5e44a4eb7c69ccaca763dce7cd7735e33a1f3c85 -r5fa8aef400798363971b419cd20171a7bf6076e1 --- Application/Ringtoets/src/Application.Ringtoets.Storage/DbContext/MacrostabilityOutwardsSectionResultEntity.cs (.../MacrostabilityOutwardsSectionResultEntity.cs) (revision 5e44a4eb7c69ccaca763dce7cd7735e33a1f3c85) +++ Application/Ringtoets/src/Application.Ringtoets.Storage/DbContext/MacrostabilityOutwardsSectionResultEntity.cs (.../MacrostabilityOutwardsSectionResultEntity.cs) (revision 5fa8aef400798363971b419cd20171a7bf6076e1) @@ -28,17 +28,15 @@ // //------------------------------------------------------------------------------ -using System; - namespace Application.Ringtoets.Storage.DbContext { - public partial class MacrostabilityOutwardsSectionResultEntity + public class MacrostabilityOutwardsSectionResultEntity { public long MacrostabilityOutwardsSectionResultEntityId { get; set; } public long FailureMechanismSectionEntityId { get; set; } public byte LayerOne { get; set; } - public Nullable LayerTwoA { get; set; } - public Nullable LayerThree { get; set; } + public double? LayerTwoA { get; set; } + public double? LayerThree { get; set; } public virtual FailureMechanismSectionEntity FailureMechanismSectionEntity { get; set; } }