Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion SQL_Adapter/AdapterActions/Execute.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2026, the respective contributors. All rights reserved.
*

Check failure on line 4 in SQL_Adapter/AdapterActions/Execute.cs

View check run for this annotation

BHoMBot-CI / copyright-compliance

SQL_Adapter/AdapterActions/Execute.cs#L3-L4

Copyright message is invalid - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasValidCopyright
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
*
Expand Down Expand Up @@ -219,3 +219,4 @@




3 changes: 2 additions & 1 deletion SQL_Adapter/AdapterActions/Pull.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2026, the respective contributors. All rights reserved.
*

Check failure on line 4 in SQL_Adapter/AdapterActions/Pull.cs

View check run for this annotation

BHoMBot-CI / copyright-compliance

SQL_Adapter/AdapterActions/Pull.cs#L3-L4

Copyright message is invalid - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasValidCopyright
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
*
Expand Down Expand Up @@ -112,3 +112,4 @@




3 changes: 2 additions & 1 deletion SQL_Adapter/AdapterActions/Push.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2026, the respective contributors. All rights reserved.
*

Check failure on line 4 in SQL_Adapter/AdapterActions/Push.cs

View check run for this annotation

BHoMBot-CI / copyright-compliance

SQL_Adapter/AdapterActions/Push.cs#L3-L4

Copyright message is invalid - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasValidCopyright
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
*
Expand Down Expand Up @@ -181,11 +181,11 @@

// Collect the rows to push
List<object> rows = new List<object>();
foreach (object item in data)
{
Dictionary<string, object> customData = new Dictionary<string, object>();
if (item is BHoMObject)
customData = ((BHoMObject)item).CustomData;

Check warning on line 188 in SQL_Adapter/AdapterActions/Push.cs

View check run for this annotation

BHoMBot-CI / code-compliance

SQL_Adapter/AdapterActions/Push.cs#L187-L188

The use of CustomData within the code is discouraged except in circumstances where volatile data is being used. - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsUsingCustomData

DataRow row = dataTable.NewRow();
foreach (string column in columns)
Expand Down Expand Up @@ -215,3 +215,4 @@




3 changes: 2 additions & 1 deletion SQL_Adapter/AdapterActions/Remove.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2026, the respective contributors. All rights reserved.
*

Check failure on line 4 in SQL_Adapter/AdapterActions/Remove.cs

View check run for this annotation

BHoMBot-CI / copyright-compliance

SQL_Adapter/AdapterActions/Remove.cs#L3-L4

Copyright message is invalid - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasValidCopyright
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
*
Expand Down Expand Up @@ -48,3 +48,4 @@




3 changes: 2 additions & 1 deletion SQL_Adapter/Convert/ToDictionary.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2026, the respective contributors. All rights reserved.
*

Check failure on line 4 in SQL_Adapter/Convert/ToDictionary.cs

View check run for this annotation

BHoMBot-CI / copyright-compliance

SQL_Adapter/Convert/ToDictionary.cs#L3-L4

Copyright message is invalid - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasValidCopyright
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
*
Expand Down Expand Up @@ -36,9 +36,9 @@
{
public static Dictionary<string, object> ToDictionary(object o)
{
if (o is CustomObject)
{
return (o as CustomObject).CustomData;

Check warning on line 41 in SQL_Adapter/Convert/ToDictionary.cs

View check run for this annotation

BHoMBot-CI / code-compliance

SQL_Adapter/Convert/ToDictionary.cs#L41

The use of CustomData within the code is discouraged except in circumstances where volatile data is being used. - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsUsingCustomData
}
else
{
Expand All @@ -60,3 +60,4 @@




2 changes: 1 addition & 1 deletion SQL_Adapter/SQL_Adapter.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<Authors>BHoM</Authors>
<Copyright>Copyright © https://github.com/BHoM</Copyright>
<RootNamespace>BH.Adapter.SQL</RootNamespace>
<FileVersion>9.0.0.0</FileVersion>
<FileVersion>9.1.0.0</FileVersion>

Check failure on line 10 in SQL_Adapter/SQL_Adapter.csproj

View check run for this annotation

BHoMBot-CI / project-compliance

SQL_Adapter/SQL_Adapter.csproj#L10

Assembly File Version should be set to 9.0.0.0
<Configurations>Debug;Release;ZeroCodeTool</Configurations>
<OutputPath>..\Build\</OutputPath>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
Expand Down
3 changes: 2 additions & 1 deletion SQL_Adapter/SqlAdapter.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2026, the respective contributors. All rights reserved.
*

Check failure on line 4 in SQL_Adapter/SqlAdapter.cs

View check run for this annotation

BHoMBot-CI / copyright-compliance

SQL_Adapter/SqlAdapter.cs#L3-L4

Copyright message is invalid - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasValidCopyright
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
*
Expand Down Expand Up @@ -41,7 +41,7 @@
/**** Constructors ****/
/***************************************************/

public SqlAdapter(string server, string database)

Check warning on line 44 in SQL_Adapter/SqlAdapter.cs

View check run for this annotation

BHoMBot-CI / documentation-compliance

SQL_Adapter/SqlAdapter.cs#L44

Adapter constructor must contain a Description attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasDescriptionAttribute Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
#if ZCTDEPLOY
m_ConnectionString = $"Server = {server}; Database = {database}; Trusted_Connection = True; TrustServerCertificate=True";
Expand All @@ -54,7 +54,7 @@

/***************************************************/

public SqlAdapter(string connectionString)

Check warning on line 57 in SQL_Adapter/SqlAdapter.cs

View check run for this annotation

BHoMBot-CI / documentation-compliance

SQL_Adapter/SqlAdapter.cs#L57

Adapter constructor must contain a Description attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasDescriptionAttribute Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
m_ConnectionString = connectionString;
Initialise();
Expand Down Expand Up @@ -203,3 +203,4 @@




3 changes: 2 additions & 1 deletion SQL_Engine/Compute/NewTableCommand.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2026, the respective contributors. All rights reserved.
*

Check failure on line 4 in SQL_Engine/Compute/NewTableCommand.cs

View check run for this annotation

BHoMBot-CI / copyright-compliance

SQL_Engine/Compute/NewTableCommand.cs#L3-L4

Copyright message is invalid - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasValidCopyright
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
*
Expand Down Expand Up @@ -37,7 +37,7 @@
/**** Public Methods ****/
/***************************************************/

public static string NewTableCommand(this Type objectType, string tableName = "")

Check failure on line 40 in SQL_Engine/Compute/NewTableCommand.cs

View check run for this annotation

BHoMBot-CI / documentation-compliance

SQL_Engine/Compute/NewTableCommand.cs#L40

Engine Method must contain a Description attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasDescriptionAttribute Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
if (objectType == null)
return "";
Expand Down Expand Up @@ -76,3 +76,4 @@




3 changes: 2 additions & 1 deletion SQL_Engine/Convert/FromDictionary.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2026, the respective contributors. All rights reserved.
*

Check failure on line 4 in SQL_Engine/Convert/FromDictionary.cs

View check run for this annotation

BHoMBot-CI / copyright-compliance

SQL_Engine/Convert/FromDictionary.cs#L3-L4

Copyright message is invalid - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasValidCopyright
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
*
Expand Down Expand Up @@ -37,7 +37,7 @@
/**** Public Methods ****/
/***************************************************/

public static object FromDictionary(this Dictionary<string, object> dic, Type type = null)

Check failure on line 40 in SQL_Engine/Convert/FromDictionary.cs

View check run for this annotation

BHoMBot-CI / documentation-compliance

SQL_Engine/Convert/FromDictionary.cs#L40

Engine Method must contain a Description attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasDescriptionAttribute Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
if ((type == null || type.IsAbstract) && dic.ContainsKey("_t"))
type = BH.Engine.Base.Create.Type(dic["_t"] as string);
Expand All @@ -46,16 +46,16 @@
type = typeof(CustomObject);

object instance = Activator.CreateInstance(type);
foreach (var kvp in dic)
{
try
{
if (kvp.Value != null && !(kvp.Value is DBNull))
{
if (kvp.Key.StartsWith("_") && instance is BHoMObject)
((BHoMObject)instance).CustomData[kvp.Key] = kvp.Value;
else
instance.SetPropertyValue(kvp.Key, kvp.Value);

Check warning on line 58 in SQL_Engine/Convert/FromDictionary.cs

View check run for this annotation

BHoMBot-CI / code-compliance

SQL_Engine/Convert/FromDictionary.cs#L55-L58

The use of CustomData within the code is discouraged except in circumstances where volatile data is being used. - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsUsingCustomData
}

Check warning on line 59 in SQL_Engine/Convert/FromDictionary.cs

View check run for this annotation

BHoMBot-CI / code-compliance

SQL_Engine/Convert/FromDictionary.cs#L53-L59

The use of CustomData within the code is discouraged except in circumstances where volatile data is being used. - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsUsingCustomData

}
Expand All @@ -72,3 +72,4 @@




3 changes: 2 additions & 1 deletion SQL_Engine/Convert/ToSqlCommand.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2026, the respective contributors. All rights reserved.
*

Check failure on line 4 in SQL_Engine/Convert/ToSqlCommand.cs

View check run for this annotation

BHoMBot-CI / copyright-compliance

SQL_Engine/Convert/ToSqlCommand.cs#L3-L4

Copyright message is invalid - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasValidCopyright
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
*
Expand Down Expand Up @@ -39,14 +39,14 @@
/**** Interface Methods ****/
/***************************************************/

public static string IToSqlCommand(this IRequest request)

Check failure on line 42 in SQL_Engine/Convert/ToSqlCommand.cs

View check run for this annotation

BHoMBot-CI / documentation-compliance

SQL_Engine/Convert/ToSqlCommand.cs#L42

Engine Method must contain a Description attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasDescriptionAttribute Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
return ToSqlCommand(request as dynamic);
}

/***************************************************/

public static string IToSqlCommand(this IExecuteCommand request)

Check failure on line 49 in SQL_Engine/Convert/ToSqlCommand.cs

View check run for this annotation

BHoMBot-CI / documentation-compliance

SQL_Engine/Convert/ToSqlCommand.cs#L49

Engine Method must contain a Description attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasDescriptionAttribute Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
return ToSqlCommand(request as dynamic);
}
Expand All @@ -56,7 +56,7 @@
/**** Request Methods ****/
/***************************************************/

public static string ToSqlCommand(this TableRequest request)

Check failure on line 59 in SQL_Engine/Convert/ToSqlCommand.cs

View check run for this annotation

BHoMBot-CI / documentation-compliance

SQL_Engine/Convert/ToSqlCommand.cs#L59

Engine Method must contain a Description attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasDescriptionAttribute Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
string select = "*";
if (request.Columns != null && request.Columns.Count > 0)
Expand All @@ -71,7 +71,7 @@

/***************************************************/

public static string ToSqlCommand(this oM.Adapters.SQL.CustomRequest request)

Check failure on line 74 in SQL_Engine/Convert/ToSqlCommand.cs

View check run for this annotation

BHoMBot-CI / documentation-compliance

SQL_Engine/Convert/ToSqlCommand.cs#L74

Engine Method must contain a Description attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasDescriptionAttribute Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
return request.Query;
}
Expand All @@ -81,7 +81,7 @@
/**** Command Methods ****/
/***************************************************/

public static string ToSqlCommand(this UpdateCommand command)

Check failure on line 84 in SQL_Engine/Convert/ToSqlCommand.cs

View check run for this annotation

BHoMBot-CI / documentation-compliance

SQL_Engine/Convert/ToSqlCommand.cs#L84

Engine Method must contain a Description attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasDescriptionAttribute Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
string where = "";
if (!string.IsNullOrWhiteSpace(command.Filter))
Expand Down Expand Up @@ -118,3 +118,4 @@




3 changes: 2 additions & 1 deletion SQL_Engine/Convert/ToSqlTypeString.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2026, the respective contributors. All rights reserved.
*

Check failure on line 4 in SQL_Engine/Convert/ToSqlTypeString.cs

View check run for this annotation

BHoMBot-CI / copyright-compliance

SQL_Engine/Convert/ToSqlTypeString.cs#L3-L4

Copyright message is invalid - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasValidCopyright
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
*
Expand Down Expand Up @@ -39,7 +39,7 @@
/**** Public Methods ****/
/***************************************************/

public static string ToSqlTypeString(this Type type)

Check failure on line 42 in SQL_Engine/Convert/ToSqlTypeString.cs

View check run for this annotation

BHoMBot-CI / documentation-compliance

SQL_Engine/Convert/ToSqlTypeString.cs#L42

Engine Method must contain a Description attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasDescriptionAttribute Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
// TODO: This is just prototype code for when we enable creation of tables from the adapter
switch (type.Name)
Expand Down Expand Up @@ -80,3 +80,4 @@




2 changes: 1 addition & 1 deletion SQL_Engine/SQL_Engine.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<Authors>BHoM</Authors>
<Copyright>Copyright © https://github.com/BHoM</Copyright>
<RootNamespace>BH.Engine.SQL</RootNamespace>
<FileVersion>9.0.0.0</FileVersion>
<FileVersion>9.1.0.0</FileVersion>

Check failure on line 10 in SQL_Engine/SQL_Engine.csproj

View check run for this annotation

BHoMBot-CI / project-compliance

SQL_Engine/SQL_Engine.csproj#L10

Assembly File Version should be set to 9.0.0.0
<Configurations>Debug;Release;ZeroCodeTool</Configurations>
<OutputPath>..\Build\</OutputPath>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
Expand Down
3 changes: 2 additions & 1 deletion SQL_oM/Commands/UpdateCommand.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2026, the respective contributors. All rights reserved.
*

Check failure on line 4 in SQL_oM/Commands/UpdateCommand.cs

View check run for this annotation

BHoMBot-CI / copyright-compliance

SQL_oM/Commands/UpdateCommand.cs#L3-L4

Copyright message is invalid - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasValidCopyright
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
*
Expand Down Expand Up @@ -50,3 +50,4 @@




3 changes: 2 additions & 1 deletion SQL_oM/Commands/UpsertCommand.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2026, the respective contributors. All rights reserved.
*

Check failure on line 4 in SQL_oM/Commands/UpsertCommand.cs

View check run for this annotation

BHoMBot-CI / copyright-compliance

SQL_oM/Commands/UpsertCommand.cs#L3-L4

Copyright message is invalid - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasValidCopyright
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
*
Expand Down Expand Up @@ -59,3 +59,4 @@




3 changes: 2 additions & 1 deletion SQL_oM/Configs/PushConfig.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2026, the respective contributors. All rights reserved.
*

Check failure on line 4 in SQL_oM/Configs/PushConfig.cs

View check run for this annotation

BHoMBot-CI / copyright-compliance

SQL_oM/Configs/PushConfig.cs#L3-L4

Copyright message is invalid - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasValidCopyright
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
*
Expand Down Expand Up @@ -45,3 +45,4 @@




3 changes: 2 additions & 1 deletion SQL_oM/Requests/CustomRequest.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2026, the respective contributors. All rights reserved.
*

Check failure on line 4 in SQL_oM/Requests/CustomRequest.cs

View check run for this annotation

BHoMBot-CI / copyright-compliance

SQL_oM/Requests/CustomRequest.cs#L3-L4

Copyright message is invalid - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasValidCopyright
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
*
Expand Down Expand Up @@ -45,3 +45,4 @@




3 changes: 2 additions & 1 deletion SQL_oM/Requests/ISingleTableRequest.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2026, the respective contributors. All rights reserved.
*

Check failure on line 4 in SQL_oM/Requests/ISingleTableRequest.cs

View check run for this annotation

BHoMBot-CI / copyright-compliance

SQL_oM/Requests/ISingleTableRequest.cs#L3-L4

Copyright message is invalid - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasValidCopyright
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
*
Expand Down Expand Up @@ -40,3 +40,4 @@
}



3 changes: 2 additions & 1 deletion SQL_oM/Requests/ITypeStrongRequest.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2026, the respective contributors. All rights reserved.
*

Check failure on line 4 in SQL_oM/Requests/ITypeStrongRequest.cs

View check run for this annotation

BHoMBot-CI / copyright-compliance

SQL_oM/Requests/ITypeStrongRequest.cs#L3-L4

Copyright message is invalid - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasValidCopyright
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
*
Expand Down Expand Up @@ -40,3 +40,4 @@
}



3 changes: 2 additions & 1 deletion SQL_oM/Requests/TableRequest.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2026, the respective contributors. All rights reserved.
*

Check failure on line 4 in SQL_oM/Requests/TableRequest.cs

View check run for this annotation

BHoMBot-CI / copyright-compliance

SQL_oM/Requests/TableRequest.cs#L3-L4

Copyright message is invalid - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasValidCopyright
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
*
Expand Down Expand Up @@ -50,3 +50,4 @@




2 changes: 1 addition & 1 deletion SQL_oM/SQL_oM.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<Authors>BHoM</Authors>
<Copyright>Copyright © https://github.com/BHoM</Copyright>
<RootNamespace>BH.oM.SQL</RootNamespace>
<FileVersion>9.0.0.0</FileVersion>
<FileVersion>9.1.0.0</FileVersion>

Check failure on line 10 in SQL_oM/SQL_oM.csproj

View check run for this annotation

BHoMBot-CI / project-compliance

SQL_oM/SQL_oM.csproj#L10

Assembly File Version should be set to 9.0.0.0
<Configurations>Debug;Release;ZeroCodeTool</Configurations>
<OutputPath>..\Build\</OutputPath>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
Expand Down