Feature rename sql objects (#1686)

This commit is contained in:
M-Patrone
2022-09-22 23:42:23 +02:00
committed by GitHub
parent ec1bb0e9ec
commit 88eaa64755
6 changed files with 294 additions and 1 deletions

View File

@@ -40,6 +40,7 @@ using Microsoft.SqlTools.ServiceLayer.ModelManagement;
using Microsoft.SqlTools.ServiceLayer.TableDesigner;
using Microsoft.SqlTools.ServiceLayer.AzureBlob;
using Microsoft.SqlTools.ServiceLayer.ExecutionPlan;
using Microsoft.SqlTools.ServiceLayer.ObjectManagement;
using System.IO;
namespace Microsoft.SqlTools.ServiceLayer
@@ -179,6 +180,9 @@ namespace Microsoft.SqlTools.ServiceLayer
ExecutionPlanService.Instance.InitializeService(serviceHost);
serviceProvider.RegisterSingleService(ExecutionPlanService.Instance);
ObjectManagementService.Instance.InitializeService(serviceHost);
serviceProvider.RegisterSingleService(ObjectManagementService.Instance);
serviceHost.InitializeRequestHandlers();
}