Index: Ringtoets/Storage/src/Ringtoets.Storage.Core/DbContext/AssessmentSectionEntity.cs =================================================================== diff -u -r2a81f01756e227d5ce93717b21b87e8a5cd5fcbb -r0b2be41a22ade831f1784e44fb91cb8b5a570a43 --- Ringtoets/Storage/src/Ringtoets.Storage.Core/DbContext/AssessmentSectionEntity.cs (.../AssessmentSectionEntity.cs) (revision 2a81f01756e227d5ce93717b21b87e8a5cd5fcbb) +++ Ringtoets/Storage/src/Ringtoets.Storage.Core/DbContext/AssessmentSectionEntity.cs (.../AssessmentSectionEntity.cs) (revision 0b2be41a22ade831f1784e44fb91cb8b5a570a43) @@ -40,6 +40,7 @@ { BackgroundDataEntities = new HashSet(); FailureMechanismEntities = new HashSet(); + HydraulicBoundaryDatabaseEntities = new HashSet(); HydraulicLocationEntities = new HashSet(); } @@ -59,8 +60,6 @@ public double LowerLimitNorm { get; set; } public double SignalingNorm { get; set; } public byte NormativeNormType { get; set; } - public string HydraulicDatabaseVersion { get; set; } - public string HydraulicDatabaseLocation { get; set; } public byte Composition { get; set; } public string ReferenceLinePointXml { get; set; } public int Order { get; set; } @@ -82,6 +81,9 @@ public virtual ICollection FailureMechanismEntities { get; set; } [SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] + public virtual ICollection HydraulicBoundaryDatabaseEntities { get; set; } + + [SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection HydraulicLocationEntities { get; set; } } } \ No newline at end of file Index: Ringtoets/Storage/src/Ringtoets.Storage.Core/DbContext/HydraulicBoundaryDatabaseEntity.cs =================================================================== diff -u --- Ringtoets/Storage/src/Ringtoets.Storage.Core/DbContext/HydraulicBoundaryDatabaseEntity.cs (revision 0) +++ Ringtoets/Storage/src/Ringtoets.Storage.Core/DbContext/HydraulicBoundaryDatabaseEntity.cs (revision 0b2be41a22ade831f1784e44fb91cb8b5a570a43) @@ -0,0 +1,52 @@ +// Copyright (C) Stichting Deltares 2018. All rights reserved. +// +// This file is part of Ringtoets. +// +// Ringtoets is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// +// All names, logos, and references to "Deltares" are registered trademarks of +// Stichting Deltares and remain full property of Stichting Deltares at all times. +// All rights reserved. + +//------------------------------------------------------------------------------ +// +// This code was generated from a template. +// +// Manual changes to this file may cause unexpected behavior in your application. +// Manual changes to this file will be overwritten if the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Ringtoets.Storage.Core.DbContext +{ + public class HydraulicBoundaryDatabaseEntity + { + public long HydraulicBoundaryDatabaseEntity1 { get; set; } + public long AssessmentSectionEntityId { get; set; } + public string HydraulicBoundaryDatabaseVersion { get; set; } + public string HydraulicBoundaryDatabaseFilePath { get; set; } + public string HydraulicLocationConfigurationSettingsFilePath { get; set; } + public string HydraulicLocationConfigurationSettingsScenarioName { get; set; } + public long HydraulicLocationConfigurationSettingsYear { get; set; } + public string HydraulicLocationConfigurationSettingsScope { get; set; } + public string HydraulicLocationConfigurationSettingsSeaLevel { get; set; } + public string HydraulicLocationConfigurationSettingsRiverDischarge { get; set; } + public string HydraulicLocationConfigurationSettingsLakeLevel { get; set; } + public string HydraulicLocationConfigurationSettingsWindDirection { get; set; } + public string HydraulicLocationConfigurationSettingsWindSpeed { get; set; } + public string HydraulicLocationConfigurationSettingsComment { get; set; } + + public virtual AssessmentSectionEntity AssessmentSectionEntity { get; set; } + } +} \ No newline at end of file Index: Ringtoets/Storage/src/Ringtoets.Storage.Core/DbContext/PartialRingtoetsEntities.cs =================================================================== diff -u -r2a81f01756e227d5ce93717b21b87e8a5cd5fcbb -r0b2be41a22ade831f1784e44fb91cb8b5a570a43 --- Ringtoets/Storage/src/Ringtoets.Storage.Core/DbContext/PartialRingtoetsEntities.cs (.../PartialRingtoetsEntities.cs) (revision 2a81f01756e227d5ce93717b21b87e8a5cd5fcbb) +++ Ringtoets/Storage/src/Ringtoets.Storage.Core/DbContext/PartialRingtoetsEntities.cs (.../PartialRingtoetsEntities.cs) (revision 0b2be41a22ade831f1784e44fb91cb8b5a570a43) @@ -80,6 +80,7 @@ HeightStructuresFailureMechanismMetaEntities.Load(); HeightStructuresOutputEntities.Load(); HeightStructuresSectionResultEntities.Load(); + HydraulicBoundaryDatabaseEntities.Load(); HydraulicLocationEntities.Load(); HydraulicLocationCalculationCollectionEntities.Include(e => e.HydraulicLocationCalculationEntities) .Load(); Index: Ringtoets/Storage/src/Ringtoets.Storage.Core/DbContext/RingtoetsEntities.Context.cs =================================================================== diff -u -r2a81f01756e227d5ce93717b21b87e8a5cd5fcbb -r0b2be41a22ade831f1784e44fb91cb8b5a570a43 --- Ringtoets/Storage/src/Ringtoets.Storage.Core/DbContext/RingtoetsEntities.Context.cs (.../RingtoetsEntities.Context.cs) (revision 2a81f01756e227d5ce93717b21b87e8a5cd5fcbb) +++ Ringtoets/Storage/src/Ringtoets.Storage.Core/DbContext/RingtoetsEntities.Context.cs (.../RingtoetsEntities.Context.cs) (revision 0b2be41a22ade831f1784e44fb91cb8b5a570a43) @@ -74,6 +74,7 @@ public virtual DbSet HeightStructuresFailureMechanismMetaEntities { get; set; } public virtual DbSet HeightStructuresOutputEntities { get; set; } public virtual DbSet HeightStructuresSectionResultEntities { get; set; } + public virtual DbSet HydraulicBoundaryDatabaseEntities { get; set; } public virtual DbSet HydraulicLocationCalculationCollectionEntities { get; set; } public virtual DbSet HydraulicLocationCalculationEntities { get; set; } public virtual DbSet HydraulicLocationEntities { get; set; } Index: Ringtoets/Storage/src/Ringtoets.Storage.Core/DbContext/RingtoetsEntities.edmx =================================================================== diff -u -rf18e15506f15ac89e88f9c587c7efa02b9458470 -r0b2be41a22ade831f1784e44fb91cb8b5a570a43 --- Ringtoets/Storage/src/Ringtoets.Storage.Core/DbContext/RingtoetsEntities.edmx (.../RingtoetsEntities.edmx) (revision f18e15506f15ac89e88f9c587c7efa02b9458470) +++ Ringtoets/Storage/src/Ringtoets.Storage.Core/DbContext/RingtoetsEntities.edmx (.../RingtoetsEntities.edmx) (revision 0b2be41a22ade831f1784e44fb91cb8b5a570a43) @@ -4,7 +4,7 @@ - + @@ -25,8 +25,6 @@ - - @@ -648,6 +646,25 @@ + + + + + + + + + + + + + + + + + + + @@ -2532,6 +2549,18 @@ + + + + + + + + + + + + @@ -3416,6 +3445,7 @@ + @@ -3803,6 +3833,10 @@ + + + + @@ -4128,6 +4162,7 @@ + @@ -4226,6 +4261,10 @@ + + + + @@ -4795,8 +4834,6 @@ - - @@ -4811,6 +4848,7 @@ + @@ -5556,6 +5594,26 @@ + + + + + + + + + + + + + + + + + + + + @@ -6694,6 +6752,18 @@ + + + + + + + + + + + + @@ -8310,8 +8380,6 @@ - - @@ -8954,6 +9022,26 @@ + + + + + + + + + + + + + + + + + + + + Index: Ringtoets/Storage/src/Ringtoets.Storage.Core/DbContext/RingtoetsEntities.edmx.diagram =================================================================== diff -u -r6865d5473ea1f4c8309c9c17ab435a1f8719b957 -r0b2be41a22ade831f1784e44fb91cb8b5a570a43 --- Ringtoets/Storage/src/Ringtoets.Storage.Core/DbContext/RingtoetsEntities.edmx.diagram (.../RingtoetsEntities.edmx.diagram) (revision 6865d5473ea1f4c8309c9c17ab435a1f8719b957) +++ Ringtoets/Storage/src/Ringtoets.Storage.Core/DbContext/RingtoetsEntities.edmx.diagram (.../RingtoetsEntities.edmx.diagram) (revision 0b2be41a22ade831f1784e44fb91cb8b5a570a43) @@ -52,99 +52,100 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + + + + - - - - - + + + + + @@ -156,6 +157,7 @@ + Index: Ringtoets/Storage/src/Ringtoets.Storage.Core/Ringtoets.Storage.Core.csproj =================================================================== diff -u -r632441e73703e7f9820711400050d70903643ca3 -r0b2be41a22ade831f1784e44fb91cb8b5a570a43 --- Ringtoets/Storage/src/Ringtoets.Storage.Core/Ringtoets.Storage.Core.csproj (.../Ringtoets.Storage.Core.csproj) (revision 632441e73703e7f9820711400050d70903643ca3) +++ Ringtoets/Storage/src/Ringtoets.Storage.Core/Ringtoets.Storage.Core.csproj (.../Ringtoets.Storage.Core.csproj) (revision 0b2be41a22ade831f1784e44fb91cb8b5a570a43) @@ -189,6 +189,9 @@ RingtoetsEntities.tt + + RingtoetsEntities.tt + RingtoetsEntities.tt Index: Ringtoets/Storage/src/Ringtoets.Storage.Core/Ringtoets.rtd =================================================================== diff -u -rb395f1742ef96712aa0f9317e507f55c044b9d65 -r0b2be41a22ade831f1784e44fb91cb8b5a570a43 Binary files differ