Index: Application/Ringtoets/src/Application.Ringtoets.Storage/DbContext/SoilLayerEntity.cs =================================================================== diff -u -rf817bfc2122cfa0a48bd19ad8518a948dfd7c95c -r5fa8aef400798363971b419cd20171a7bf6076e1 --- Application/Ringtoets/src/Application.Ringtoets.Storage/DbContext/SoilLayerEntity.cs (.../SoilLayerEntity.cs) (revision f817bfc2122cfa0a48bd19ad8518a948dfd7c95c) +++ Application/Ringtoets/src/Application.Ringtoets.Storage/DbContext/SoilLayerEntity.cs (.../SoilLayerEntity.cs) (revision 5fa8aef400798363971b419cd20171a7bf6076e1) @@ -28,25 +28,23 @@ // //------------------------------------------------------------------------------ -using System; - namespace Application.Ringtoets.Storage.DbContext { - public partial class SoilLayerEntity + public class SoilLayerEntity { public long SoilLayerEntityId { get; set; } public long SoilProfileEntityId { get; set; } - public Nullable Top { get; set; } + public double? Top { get; set; } public byte IsAquifer { get; set; } public long Color { get; set; } public string MaterialName { get; set; } - public Nullable BelowPhreaticLevelMean { get; set; } - public Nullable BelowPhreaticLevelDeviation { get; set; } - public Nullable DiameterD70Mean { get; set; } - public Nullable DiameterD70CoefficientOfVariation { get; set; } - public Nullable BelowPhreaticLevelShift { get; set; } - public Nullable PermeabilityMean { get; set; } - public Nullable PermeabilityCoefficientOfVariation { get; set; } + public double? BelowPhreaticLevelMean { get; set; } + public double? BelowPhreaticLevelDeviation { get; set; } + public double? DiameterD70Mean { get; set; } + public double? DiameterD70CoefficientOfVariation { get; set; } + public double? BelowPhreaticLevelShift { get; set; } + public double? PermeabilityMean { get; set; } + public double? PermeabilityCoefficientOfVariation { get; set; } public int Order { get; set; } public virtual SoilProfileEntity SoilProfileEntity { get; set; }