make the NodeTypeId nullable (#1972)

This commit is contained in:
Alan Ren
2023-03-27 19:18:07 -07:00
committed by GitHub
parent d7940e0cc6
commit 45f1d0db22

View File

@@ -103,7 +103,7 @@ namespace Microsoft.SqlTools.ServiceLayer.ObjectExplorer.Nodes
/// <summary>
/// Enum defining the type of the node - for example Server, Database, Folder, Table
/// </summary>
public NodeTypes NodeTypeId { get; set; }
public NodeTypes? NodeTypeId { get; set; }
/// <summary>
/// Node Sub type - for example a key can have type as "Key" and sub type as "PrimaryKey"