Index: Core/Common/src/Core.Common.IO/Readers/SqLiteDatabaseReaderBase.cs =================================================================== diff -u -r190069e93048bfb7abe5a190ada915e4b4e782b0 -r261d8e56f76b7bb4f5c5be7082bc3dfcb281657c --- Core/Common/src/Core.Common.IO/Readers/SqLiteDatabaseReaderBase.cs (.../SqLiteDatabaseReaderBase.cs) (revision 190069e93048bfb7abe5a190ada915e4b4e782b0) +++ Core/Common/src/Core.Common.IO/Readers/SqLiteDatabaseReaderBase.cs (.../SqLiteDatabaseReaderBase.cs) (revision 261d8e56f76b7bb4f5c5be7082bc3dfcb281657c) @@ -79,7 +79,18 @@ /// public string Path { get; } + public void Dispose() + { + Dispose(true); + GC.SuppressFinalize(this); + } + /// + /// Gets the . + /// + protected SQLiteConnection Connection { get; private set; } + + /// /// Closes and disposes the existing . /// When is true, the managed resources are freed as well. /// @@ -96,18 +107,7 @@ disposed = true; } - public void Dispose() - { - Dispose(true); - GC.SuppressFinalize(this); - } - /// - /// Gets the . - /// - protected SQLiteConnection Connection { get; private set; } - - /// /// Moves to and reads the next result set in multiple row-returning SQL command. /// /// The to process. @@ -121,7 +121,7 @@ /// Creates a new , based upon and . /// /// The query to execute. - /// Parameters the is depended on. + /// Parameters the is dependent on. /// A new instance of . /// Thrown when the execution of failed. protected IDataReader CreateDataReader(string queryString, params SQLiteParameter[] parameters) Index: Ringtoets/Common/src/Ringtoets.Common.IO/Properties/Resources.Designer.cs =================================================================== diff -u -r4fc96d31a69029557095247c8ff890d06239b65a -r261d8e56f76b7bb4f5c5be7082bc3dfcb281657c --- Ringtoets/Common/src/Ringtoets.Common.IO/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 4fc96d31a69029557095247c8ff890d06239b65a) +++ Ringtoets/Common/src/Ringtoets.Common.IO/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 261d8e56f76b7bb4f5c5be7082bc3dfcb281657c) @@ -2277,26 +2277,17 @@ } /// - /// Looks up a localized string similar to Profielschematisatie {0} doorkruist de huidige referentielijn niet of op meer dan één punt en kan niet worden geïmporteerd. {1}. + /// Looks up a localized string similar to Profielschematisatie {0} doorkruist de huidige referentielijn niet of op meer dan één punt en kan niet worden geïmporteerd. Dit kan komen doordat de profielschematisatie een lokaal coördinaatsysteem heeft.. /// - public static string SurfaceLineExtensions_GetSingleReferenceLineIntersection_SurfaceLine_0_does_not_correspond_to_current_referenceline_1_ { + public static string SurfaceLineExtensions_GetSingleReferenceLineIntersection_SurfaceLine_0_does_not_correspond_to_current_referenceline_Could_be_caused_coordinates_being_local_coordinate_system { get { return ResourceManager.GetString("SurfaceLineExtensions_GetSingleReferenceLineIntersection_SurfaceLine_0_does_not_c" + - "orrespond_to_current_referenceline_1_", resourceCulture); + "orrespond_to_current_referenceline_Could_be_caused_coordinates_being_local_coord" + + "inate_system", resourceCulture); } } /// - /// Looks up a localized string similar to Dit kan komen doordat de profielschematisatie een lokaal coördinaatsysteem heeft.. - /// - public static string SurfaceLineExtensions_GetSingleReferenceLineIntersection_This_could_be_caused_coordinates_being_local_coordinate_system { - get { - return ResourceManager.GetString("SurfaceLineExtensions_GetSingleReferenceLineIntersection_This_could_be_caused_coo" + - "rdinates_being_local_coordinate_system", resourceCulture); - } - } - - /// /// Looks up a localized string similar to Karakteristieke punten gevonden zonder bijbehorende profielschematisatie voor locatie '{0}'.. /// public static string SurfaceLinesCsvImporter_AddImportedDataToModel_Characteristic_points_found_for_unknown_SurfaceLine_0_ { Index: Ringtoets/Common/src/Ringtoets.Common.IO/Properties/Resources.resx =================================================================== diff -u -r4fc96d31a69029557095247c8ff890d06239b65a -r261d8e56f76b7bb4f5c5be7082bc3dfcb281657c --- Ringtoets/Common/src/Ringtoets.Common.IO/Properties/Resources.resx (.../Resources.resx) (revision 4fc96d31a69029557095247c8ff890d06239b65a) +++ Ringtoets/Common/src/Ringtoets.Common.IO/Properties/Resources.resx (.../Resources.resx) (revision 261d8e56f76b7bb4f5c5be7082bc3dfcb281657c) @@ -758,12 +758,9 @@ Profielschematisatie {0} doorkruist de huidige referentielijn niet of op meer dan één punt en kan niet worden geïmporteerd. - - Profielschematisatie {0} doorkruist de huidige referentielijn niet of op meer dan één punt en kan niet worden geïmporteerd. {1} + + Profielschematisatie {0} doorkruist de huidige referentielijn niet of op meer dan één punt en kan niet worden geïmporteerd. Dit kan komen doordat de profielschematisatie een lokaal coördinaatsysteem heeft. - - Dit kan komen doordat de profielschematisatie een lokaal coördinaatsysteem heeft. - Inlezen van het karakteristieke punten-bestand. Index: Ringtoets/Common/src/Ringtoets.Common.IO/SoilProfile/Schema/FailureMechanismType.cs =================================================================== diff -u -rbe4427a66ef77dfa213048b0a823824ea679bce3 -r261d8e56f76b7bb4f5c5be7082bc3dfcb281657c --- Ringtoets/Common/src/Ringtoets.Common.IO/SoilProfile/Schema/FailureMechanismType.cs (.../FailureMechanismType.cs) (revision be4427a66ef77dfa213048b0a823824ea679bce3) +++ Ringtoets/Common/src/Ringtoets.Common.IO/SoilProfile/Schema/FailureMechanismType.cs (.../FailureMechanismType.cs) (revision 261d8e56f76b7bb4f5c5be7082bc3dfcb281657c) @@ -22,7 +22,7 @@ namespace Ringtoets.Common.IO.SoilProfile.Schema { /// - /// Defines the various failure mechanism types in the DSoil-Model database. + /// Defines the various failure mechanism types in the D-Soil Model database. /// public enum FailureMechanismType : long { Index: Ringtoets/Common/src/Ringtoets.Common.IO/SoilProfile/Schema/MechanismTableDefinitions.cs =================================================================== diff -u -rbe4427a66ef77dfa213048b0a823824ea679bce3 -r261d8e56f76b7bb4f5c5be7082bc3dfcb281657c --- Ringtoets/Common/src/Ringtoets.Common.IO/SoilProfile/Schema/MechanismTableDefinitions.cs (.../MechanismTableDefinitions.cs) (revision be4427a66ef77dfa213048b0a823824ea679bce3) +++ Ringtoets/Common/src/Ringtoets.Common.IO/SoilProfile/Schema/MechanismTableDefinitions.cs (.../MechanismTableDefinitions.cs) (revision 261d8e56f76b7bb4f5c5be7082bc3dfcb281657c) @@ -22,7 +22,7 @@ namespace Ringtoets.Common.IO.SoilProfile.Schema { /// - /// Defines the table and column names of the table 'Mechanism' in the DSoil-Model database. + /// Defines the table and column names of the table 'Mechanism' in the D-Soil Model database. /// internal static class MechanismTableDefinitions { Index: Ringtoets/Common/src/Ringtoets.Common.IO/SoilProfile/Schema/MetaTableDefinitions.cs =================================================================== diff -u -r1fa1ff1080811742abffbd23346b23cf1a8aef3d -r261d8e56f76b7bb4f5c5be7082bc3dfcb281657c --- Ringtoets/Common/src/Ringtoets.Common.IO/SoilProfile/Schema/MetaTableDefinitions.cs (.../MetaTableDefinitions.cs) (revision 1fa1ff1080811742abffbd23346b23cf1a8aef3d) +++ Ringtoets/Common/src/Ringtoets.Common.IO/SoilProfile/Schema/MetaTableDefinitions.cs (.../MetaTableDefinitions.cs) (revision 261d8e56f76b7bb4f5c5be7082bc3dfcb281657c) @@ -22,7 +22,7 @@ namespace Ringtoets.Common.IO.SoilProfile.Schema { /// - /// Defines the table and column names of the table '_MetaData' in the DSoil-Model database. + /// Defines the table and column names of the table '_MetaData' in the D-Soil Model database. /// internal static class MetaTableDefinitions { Index: Ringtoets/Common/src/Ringtoets.Common.IO/SoilProfile/Schema/SegmentPointsTableDefinitions.cs =================================================================== diff -u -rbe4427a66ef77dfa213048b0a823824ea679bce3 -r261d8e56f76b7bb4f5c5be7082bc3dfcb281657c --- Ringtoets/Common/src/Ringtoets.Common.IO/SoilProfile/Schema/SegmentPointsTableDefinitions.cs (.../SegmentPointsTableDefinitions.cs) (revision be4427a66ef77dfa213048b0a823824ea679bce3) +++ Ringtoets/Common/src/Ringtoets.Common.IO/SoilProfile/Schema/SegmentPointsTableDefinitions.cs (.../SegmentPointsTableDefinitions.cs) (revision 261d8e56f76b7bb4f5c5be7082bc3dfcb281657c) @@ -22,7 +22,7 @@ namespace Ringtoets.Common.IO.SoilProfile.Schema { /// - /// Defines the table and column names of the table 'SegmentPoints' of the DSoil-Model database. + /// Defines the table and column names of the table 'SegmentPoints' of the D-Soil Model database. /// internal static class SegmentPointsTableDefinitions { Index: Ringtoets/Common/src/Ringtoets.Common.IO/SoilProfile/Schema/SegmentTableDefinitions.cs =================================================================== diff -u -rbe4427a66ef77dfa213048b0a823824ea679bce3 -r261d8e56f76b7bb4f5c5be7082bc3dfcb281657c --- Ringtoets/Common/src/Ringtoets.Common.IO/SoilProfile/Schema/SegmentTableDefinitions.cs (.../SegmentTableDefinitions.cs) (revision be4427a66ef77dfa213048b0a823824ea679bce3) +++ Ringtoets/Common/src/Ringtoets.Common.IO/SoilProfile/Schema/SegmentTableDefinitions.cs (.../SegmentTableDefinitions.cs) (revision 261d8e56f76b7bb4f5c5be7082bc3dfcb281657c) @@ -22,7 +22,7 @@ namespace Ringtoets.Common.IO.SoilProfile.Schema { /// - /// Defines the table and column names of the table 'Segment' in the DSoil-Model database. + /// Defines the table and column names of the table 'Segment' in the D-Soil Model database. /// internal static class SegmentTableDefinitions { Index: Ringtoets/Common/src/Ringtoets.Common.IO/SoilProfile/Schema/SoilProfileTableDefinitions.cs =================================================================== diff -u -r6e6a5a7069dd76f92a57b638f010b20859521ae6 -r261d8e56f76b7bb4f5c5be7082bc3dfcb281657c --- Ringtoets/Common/src/Ringtoets.Common.IO/SoilProfile/Schema/SoilProfileTableDefinitions.cs (.../SoilProfileTableDefinitions.cs) (revision 6e6a5a7069dd76f92a57b638f010b20859521ae6) +++ Ringtoets/Common/src/Ringtoets.Common.IO/SoilProfile/Schema/SoilProfileTableDefinitions.cs (.../SoilProfileTableDefinitions.cs) (revision 261d8e56f76b7bb4f5c5be7082bc3dfcb281657c) @@ -22,7 +22,7 @@ namespace Ringtoets.Common.IO.SoilProfile.Schema { /// - /// Defines the table and column names of the table 'StochasticSoilProfile' in the DSoil-Model database. + /// Defines the table and column names of the table 'StochasticSoilProfile' in the D-Soil Model database. /// internal static class SoilProfileTableDefinitions { Index: Ringtoets/Common/src/Ringtoets.Common.IO/SoilProfile/Schema/StochasticSoilModelTableDefinitions.cs =================================================================== diff -u -r133fb73ed33467075fa1317ab736902755ff6e4f -r261d8e56f76b7bb4f5c5be7082bc3dfcb281657c --- Ringtoets/Common/src/Ringtoets.Common.IO/SoilProfile/Schema/StochasticSoilModelTableDefinitions.cs (.../StochasticSoilModelTableDefinitions.cs) (revision 133fb73ed33467075fa1317ab736902755ff6e4f) +++ Ringtoets/Common/src/Ringtoets.Common.IO/SoilProfile/Schema/StochasticSoilModelTableDefinitions.cs (.../StochasticSoilModelTableDefinitions.cs) (revision 261d8e56f76b7bb4f5c5be7082bc3dfcb281657c) @@ -22,7 +22,7 @@ namespace Ringtoets.Common.IO.SoilProfile.Schema { /// - /// Defines the table and column names of the table 'StochasticSoilModel' in the DSoil-Model database. + /// Defines the table and column names of the table 'StochasticSoilModel' in the D-Soil Model database. /// internal static class StochasticSoilModelTableDefinitions { Index: Ringtoets/Common/src/Ringtoets.Common.IO/SoilProfile/Schema/StochasticSoilProfileTableDefinitions.cs =================================================================== diff -u -rbe4427a66ef77dfa213048b0a823824ea679bce3 -r261d8e56f76b7bb4f5c5be7082bc3dfcb281657c --- Ringtoets/Common/src/Ringtoets.Common.IO/SoilProfile/Schema/StochasticSoilProfileTableDefinitions.cs (.../StochasticSoilProfileTableDefinitions.cs) (revision be4427a66ef77dfa213048b0a823824ea679bce3) +++ Ringtoets/Common/src/Ringtoets.Common.IO/SoilProfile/Schema/StochasticSoilProfileTableDefinitions.cs (.../StochasticSoilProfileTableDefinitions.cs) (revision 261d8e56f76b7bb4f5c5be7082bc3dfcb281657c) @@ -22,7 +22,7 @@ namespace Ringtoets.Common.IO.SoilProfile.Schema { /// - /// Defines the table and column names of the table 'StochasticSoilProfile' in the DSoil-Model database. + /// Defines the table and column names of the table 'StochasticSoilProfile' in the D-Soil Model database. /// internal static class StochasticSoilProfileTableDefinitions { Index: Ringtoets/Common/src/Ringtoets.Common.IO/SoilProfile/SoilDatabaseQueryBuilder.cs =================================================================== diff -u -r133fb73ed33467075fa1317ab736902755ff6e4f -r261d8e56f76b7bb4f5c5be7082bc3dfcb281657c --- Ringtoets/Common/src/Ringtoets.Common.IO/SoilProfile/SoilDatabaseQueryBuilder.cs (.../SoilDatabaseQueryBuilder.cs) (revision 133fb73ed33467075fa1317ab736902755ff6e4f) +++ Ringtoets/Common/src/Ringtoets.Common.IO/SoilProfile/SoilDatabaseQueryBuilder.cs (.../SoilDatabaseQueryBuilder.cs) (revision 261d8e56f76b7bb4f5c5be7082bc3dfcb281657c) @@ -24,7 +24,7 @@ namespace Ringtoets.Common.IO.SoilProfile { /// - /// Defines queries to execute on the DSoil-Model database. + /// Defines queries to execute on the D-Soil Model database. /// internal static class SoilDatabaseQueryBuilder { @@ -53,7 +53,7 @@ "GROUP BY mat.MA_ID "; /// - /// Returns the SQL query to execute to check if version of the DSoil-Model database is as expected. + /// Returns the SQL query to execute to check if version of the D-Soil Model database is as expected. /// /// The SQL query to execute. /// "@" @@ -67,7 +67,7 @@ } /// - /// Returns the SQL query to execute to check if segment names in the DSoil-Model database + /// Returns the SQL query to execute to check if segment names in the D-Soil Model database /// are unique. /// /// The SQL query to execute. @@ -114,7 +114,7 @@ /// /// Returns the SQL query to execute to fetch stochastic soil models - /// per failure mechanism from the DSoil-Model database. + /// per failure mechanism from the D-Soil Model database. /// /// The SQL query to execute. public static string GetStochasticSoilModelPerMechanismQuery() @@ -134,7 +134,7 @@ /// /// Returns the SQL query to execute to fetch segments and segment points - /// per stochastic soil model from the DSoil-Model database. + /// per stochastic soil model from the D-Soil Model database. /// /// The SQL query to execute. public static string GetSegmentPointsQuery() @@ -150,7 +150,7 @@ } /// - /// Returns the SQL query to execute to fetch 1D soil profile from the DSoil-Model database. + /// Returns the SQL query to execute to fetch 1D soil profile from the D-Soil Model database. /// /// The SQL query to execute. public static string GetSoilProfile1DQuery() @@ -199,7 +199,7 @@ } /// - /// Returns the SQL query to execute to fetch 2D soil profile from the DSoil-Model database. + /// Returns the SQL query to execute to fetch 2D soil profile from the D-Soil Model database. /// /// The SQL query to execute. public static string GetSoilProfile2DQuery() Index: Ringtoets/Common/src/Ringtoets.Common.IO/SurfaceLines/SurfaceLineExtensions.cs =================================================================== diff -u -r76d5d269e367c6c3a98802b92d689cebd506a2f2 -r261d8e56f76b7bb4f5c5be7082bc3dfcb281657c --- Ringtoets/Common/src/Ringtoets.Common.IO/SurfaceLines/SurfaceLineExtensions.cs (.../SurfaceLineExtensions.cs) (revision 76d5d269e367c6c3a98802b92d689cebd506a2f2) +++ Ringtoets/Common/src/Ringtoets.Common.IO/SurfaceLines/SurfaceLineExtensions.cs (.../SurfaceLineExtensions.cs) (revision 261d8e56f76b7bb4f5c5be7082bc3dfcb281657c) @@ -74,9 +74,8 @@ if (result.TypeOfIntersection == ReferenceLineIntersectionsResult.NoIntersections) { - string message = string.Format(Resources.SurfaceLineExtensions_GetSingleReferenceLineIntersection_SurfaceLine_0_does_not_correspond_to_current_referenceline_1_, - surfaceLine.Name, - Resources.SurfaceLineExtensions_GetSingleReferenceLineIntersection_This_could_be_caused_coordinates_being_local_coordinate_system); + string message = string.Format(Resources.SurfaceLineExtensions_GetSingleReferenceLineIntersection_SurfaceLine_0_does_not_correspond_to_current_referenceline_Could_be_caused_coordinates_being_local_coordinate_system, + surfaceLine.Name); throw new ImportedDataTransformException(message); } if (result.TypeOfIntersection == ReferenceLineIntersectionsResult.MultipleIntersectionsOrOverlap) Index: Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.IO/Builders/SoilDatabaseQueryBuilder.cs =================================================================== diff -u -rcbf7b4ba9b60558ba8827706bb2ebc5f53cfe063 -r261d8e56f76b7bb4f5c5be7082bc3dfcb281657c --- Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.IO/Builders/SoilDatabaseQueryBuilder.cs (.../SoilDatabaseQueryBuilder.cs) (revision cbf7b4ba9b60558ba8827706bb2ebc5f53cfe063) +++ Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.IO/Builders/SoilDatabaseQueryBuilder.cs (.../SoilDatabaseQueryBuilder.cs) (revision 261d8e56f76b7bb4f5c5be7082bc3dfcb281657c) @@ -24,13 +24,13 @@ namespace Ringtoets.MacroStabilityInwards.IO.Builders { /// - /// Defines queries to execute on the DSoil-Model database. + /// Defines queries to execute on the D-Soil Model database. /// public static class SoilDatabaseQueryBuilder { /// /// Returns the SQL query to execute to fetch Stochastic Soil Models - /// of the Macro Stability Inwards Mechanism from the DSoil-Model database. + /// of the Macro Stability Inwards Mechanism from the D-Soil Model database. /// /// The SQL query to execute. /// ME_Name needs to be @@ -89,7 +89,7 @@ /// /// Returns the SQL query to execute to fetch all Stochastic Soil Profiles - /// from the DSoil-Model database. + /// from the D-Soil Model database. /// /// The SQL query to execute. public static string GetAllStochasticSoilProfileQuery() @@ -144,7 +144,7 @@ } /// - /// Returns the SQL query to execute to check if version of the DSoil-Model database is as expected. + /// Returns the SQL query to execute to check if version of the D-Soil Model database is as expected. /// /// The SQL query to execute. /// Value needs to be @@ -160,7 +160,7 @@ } /// - /// Returns the SQL query to execute to check if segment names in the DSoil-Model database + /// Returns the SQL query to execute to check if segment names in the D-Soil Model database /// are unique. /// /// The SQL query to execute. Index: Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.IO/SoilProfile/Schema/MechanismPointLocationTableColumns.cs =================================================================== diff -u -r650fc7b43cb6729baee51d079f0377df8d7a3de9 -r261d8e56f76b7bb4f5c5be7082bc3dfcb281657c --- Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.IO/SoilProfile/Schema/MechanismPointLocationTableColumns.cs (.../MechanismPointLocationTableColumns.cs) (revision 650fc7b43cb6729baee51d079f0377df8d7a3de9) +++ Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.IO/SoilProfile/Schema/MechanismPointLocationTableColumns.cs (.../MechanismPointLocationTableColumns.cs) (revision 261d8e56f76b7bb4f5c5be7082bc3dfcb281657c) @@ -23,7 +23,7 @@ { /// /// This class contains the names of the table and columns of the table - /// 'Mechanism' of the DSoil-Model database. + /// 'Mechanism' of the D-Soil Model database. /// internal static class MechanismPointLocationTableColumns { Index: Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.IO/SoilProfile/Schema/MechanismTableColumns.cs =================================================================== diff -u -r650fc7b43cb6729baee51d079f0377df8d7a3de9 -r261d8e56f76b7bb4f5c5be7082bc3dfcb281657c --- Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.IO/SoilProfile/Schema/MechanismTableColumns.cs (.../MechanismTableColumns.cs) (revision 650fc7b43cb6729baee51d079f0377df8d7a3de9) +++ Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.IO/SoilProfile/Schema/MechanismTableColumns.cs (.../MechanismTableColumns.cs) (revision 261d8e56f76b7bb4f5c5be7082bc3dfcb281657c) @@ -23,7 +23,7 @@ { /// /// This class contains the names of the table and columns of the table - /// 'Mechanism' of the DSoil-Model database. + /// 'Mechanism' of the D-Soil Model database. /// internal static class MechanismTableColumns { Index: Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.IO/SoilProfile/Schema/MetaDataTableColumns.cs =================================================================== diff -u -r650fc7b43cb6729baee51d079f0377df8d7a3de9 -r261d8e56f76b7bb4f5c5be7082bc3dfcb281657c --- Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.IO/SoilProfile/Schema/MetaDataTableColumns.cs (.../MetaDataTableColumns.cs) (revision 650fc7b43cb6729baee51d079f0377df8d7a3de9) +++ Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.IO/SoilProfile/Schema/MetaDataTableColumns.cs (.../MetaDataTableColumns.cs) (revision 261d8e56f76b7bb4f5c5be7082bc3dfcb281657c) @@ -23,7 +23,7 @@ { /// /// This class contains the names of the table and columns of the table - /// '_MetaData' of the DSoil-Model database. + /// '_MetaData' of the D-Soil Model database. /// internal static class MetaDataTableColumns { Index: Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.IO/SoilProfile/Schema/SegmentPointsTableColumns.cs =================================================================== diff -u -r650fc7b43cb6729baee51d079f0377df8d7a3de9 -r261d8e56f76b7bb4f5c5be7082bc3dfcb281657c --- Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.IO/SoilProfile/Schema/SegmentPointsTableColumns.cs (.../SegmentPointsTableColumns.cs) (revision 650fc7b43cb6729baee51d079f0377df8d7a3de9) +++ Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.IO/SoilProfile/Schema/SegmentPointsTableColumns.cs (.../SegmentPointsTableColumns.cs) (revision 261d8e56f76b7bb4f5c5be7082bc3dfcb281657c) @@ -23,7 +23,7 @@ { /// /// This class contains the names of the table and columns of the table - /// 'SegmentPoints' of the DSoil-Model database. + /// 'SegmentPoints' of the D-Soil Model database. /// internal static class SegmentPointsTableColumns { Index: Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.IO/SoilProfile/Schema/SegmentTableColumns.cs =================================================================== diff -u -r650fc7b43cb6729baee51d079f0377df8d7a3de9 -r261d8e56f76b7bb4f5c5be7082bc3dfcb281657c --- Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.IO/SoilProfile/Schema/SegmentTableColumns.cs (.../SegmentTableColumns.cs) (revision 650fc7b43cb6729baee51d079f0377df8d7a3de9) +++ Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.IO/SoilProfile/Schema/SegmentTableColumns.cs (.../SegmentTableColumns.cs) (revision 261d8e56f76b7bb4f5c5be7082bc3dfcb281657c) @@ -23,7 +23,7 @@ { /// /// This class contains the names of the table and columns of the table - /// 'Segment' of the DSoil-Model database. + /// 'Segment' of the D-Soil Model database. /// internal static class SegmentTableColumns { Index: Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.IO/SoilProfile/Schema/SoilLayer1DTableColumns.cs =================================================================== diff -u -r650fc7b43cb6729baee51d079f0377df8d7a3de9 -r261d8e56f76b7bb4f5c5be7082bc3dfcb281657c --- Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.IO/SoilProfile/Schema/SoilLayer1DTableColumns.cs (.../SoilLayer1DTableColumns.cs) (revision 650fc7b43cb6729baee51d079f0377df8d7a3de9) +++ Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.IO/SoilProfile/Schema/SoilLayer1DTableColumns.cs (.../SoilLayer1DTableColumns.cs) (revision 261d8e56f76b7bb4f5c5be7082bc3dfcb281657c) @@ -22,7 +22,7 @@ namespace Ringtoets.MacroStabilityInwards.IO.SoilProfile.Schema { /// - /// This class contains the column names that are used when querying the DSoil-Model database. + /// This class contains the column names that are used when querying the D-Soil Model database. /// internal static class SoilLayer1DTableColumns { Index: Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.IO/SoilProfile/Schema/SoilLayer2DTableColumns.cs =================================================================== diff -u -r650fc7b43cb6729baee51d079f0377df8d7a3de9 -r261d8e56f76b7bb4f5c5be7082bc3dfcb281657c --- Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.IO/SoilProfile/Schema/SoilLayer2DTableColumns.cs (.../SoilLayer2DTableColumns.cs) (revision 650fc7b43cb6729baee51d079f0377df8d7a3de9) +++ Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.IO/SoilProfile/Schema/SoilLayer2DTableColumns.cs (.../SoilLayer2DTableColumns.cs) (revision 261d8e56f76b7bb4f5c5be7082bc3dfcb281657c) @@ -22,7 +22,7 @@ namespace Ringtoets.MacroStabilityInwards.IO.SoilProfile.Schema { /// - /// This class contains the column names that are used when querying the DSoil-Model database. + /// This class contains the column names that are used when querying the D-Soil Model database. /// internal static class SoilLayer2DTableColumns { Index: Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.IO/SoilProfile/Schema/SoilProfileTableColumns.cs =================================================================== diff -u -r650fc7b43cb6729baee51d079f0377df8d7a3de9 -r261d8e56f76b7bb4f5c5be7082bc3dfcb281657c --- Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.IO/SoilProfile/Schema/SoilProfileTableColumns.cs (.../SoilProfileTableColumns.cs) (revision 650fc7b43cb6729baee51d079f0377df8d7a3de9) +++ Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.IO/SoilProfile/Schema/SoilProfileTableColumns.cs (.../SoilProfileTableColumns.cs) (revision 261d8e56f76b7bb4f5c5be7082bc3dfcb281657c) @@ -22,7 +22,7 @@ namespace Ringtoets.MacroStabilityInwards.IO.SoilProfile.Schema { /// - /// This class contains the column names that are used when querying the DSoil-Model database. + /// This class contains the column names that are used when querying the D-Soil Model database. /// internal static class SoilProfileTableColumns { Index: Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.IO/SoilProfile/Schema/StochasticSoilModelTableColumns.cs =================================================================== diff -u -r650fc7b43cb6729baee51d079f0377df8d7a3de9 -r261d8e56f76b7bb4f5c5be7082bc3dfcb281657c --- Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.IO/SoilProfile/Schema/StochasticSoilModelTableColumns.cs (.../StochasticSoilModelTableColumns.cs) (revision 650fc7b43cb6729baee51d079f0377df8d7a3de9) +++ Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.IO/SoilProfile/Schema/StochasticSoilModelTableColumns.cs (.../StochasticSoilModelTableColumns.cs) (revision 261d8e56f76b7bb4f5c5be7082bc3dfcb281657c) @@ -23,7 +23,7 @@ { /// /// This class contains the names of the table and columns of the table - /// 'StochasticSoilModel' of the DSoil-Model database. + /// 'StochasticSoilModel' of the D-Soil Model database. /// internal static class StochasticSoilModelTableColumns { Index: Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.IO/SoilProfile/Schema/StochasticSoilProfileTableColumns.cs =================================================================== diff -u -r650fc7b43cb6729baee51d079f0377df8d7a3de9 -r261d8e56f76b7bb4f5c5be7082bc3dfcb281657c --- Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.IO/SoilProfile/Schema/StochasticSoilProfileTableColumns.cs (.../StochasticSoilProfileTableColumns.cs) (revision 650fc7b43cb6729baee51d079f0377df8d7a3de9) +++ Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.IO/SoilProfile/Schema/StochasticSoilProfileTableColumns.cs (.../StochasticSoilProfileTableColumns.cs) (revision 261d8e56f76b7bb4f5c5be7082bc3dfcb281657c) @@ -23,7 +23,7 @@ { /// /// This class contains the names of the table and columns of the table - /// 'StochasticSoilProfile' of the DSoil-Model database. + /// 'StochasticSoilProfile' of the D-Soil Model database. /// internal static class StochasticSoilProfileTableColumns {