我正在尝试使用SQL Server 2014(Visual Studio 2013)获取当前连接,但我继续播放“Microsoft.sqlserver.management.ui.vsIntegration.serviceCache”中的“sqlpackagebase.dll”中的serviceCache。当我在ServiceCache调用上拨打断点时,“Microsoft.Sqlserver.sqltools.vsIntegration.dll”。有人知道解决这个问题吗?任何帮助都非常感谢!

my references are:
Microsoft.SqlServer.ConnectionInfo.dll
Microsoft.SqlServer.Management.Sdk.SqlStudio.dll
Microsoft.SqlServer.Management.SqlStudio.Explorer.dll
Microsoft.SqlServer.RegSvrEnum.dll
Microsoft.SqlServer.Smo.dll
Microsoft.SqlServer.SqlTools.VSIntegration.dll
ObjectExplorer.dll
SQLEditors.dll
SqlWorkbench.Interfaces.dll

using System.Reflection;
using System.Globalization;
using Microsoft.SqlServer.Management.UI.VSIntegration;
using Microsoft.SqlServer.Management.UI.VSIntegration.ObjectExplorer;
using Microsoft.SqlServer.Management.Common;
using Microsoft.SqlServer.Management.Smo;
using Microsoft.SqlServer.Management.Smo.RegSvrEnum;
using Microsoft.SqlServer.Management.SqlStudio.Explorer;

namespace NewAddin
{
/// <summary>The object for implementing an Add-in.</summary>
/// <seealso class='IDTExtensibility2' />
public class Connect : IDTExtensibility2, IDTCommandTarget
{
/// <summary>Implements the constructor for the Add-in object. Place your      initialization code within this method.</summary>
public Connect()
{
}

SqlConnectionInfo _myCurrentConnection = null;
private UIConnectionInfo currentUIConnection;


/// <summary>Implements the OnConnection method of the IDTExtensibility2 interface. Receives notification that the Add-in is being loaded.</summary>
/// <param term='application'>Root object of the host application.</param>
/// <param term='connectMode'>Describes how the Add-in is being loaded.</param>
/// <param term='addInInst'>Object representing this Add-in.</param>
/// <seealso class='IDTExtensibility2' />
public void OnConnection(object application, ext_ConnectMode connectMode, object addInInst, ref Array custom)
{
_applicationObject = (DTE2)application;
_addInInstance = (AddIn)addInInst;

if (Microsoft.SqlServer.Management.UI.VSIntegration.ServiceCache.ScriptFactory.CurrentlyActiveWndConnectionInfo != null)
{
//                _myCurrentConnection =     ServiceCache.ScriptFactory.CurrentlyActiveWndConnectionInfo.UIConnectionInfo;
currentUIConnection = ServiceCache.ScriptFactory.CurrentlyActiveWndConnectionInfo.UIConnectionInfo;

}
.

有帮助吗?

解决方案

删除对microsoft.sqlserver.sqltools.vsIntegration.dll的引用。然后显式添加对SQLPackageBase.dll

的引用

从相同的位置

c:\ program files(x86)\ Microsoft SQL Server \ 110 \ Tools \ Binn \ ManagementStudio \

在本地固定它。

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top