I am trying to add a reference to the above assembly but it does not appear in my ASP.NET MVC .NET 4 (Not client) applications Assembly list. Does anyone know how to reference this Assembly?
相关问题
- sql execution latency when assign to a variable
- What is the best way to cache a table from a (SQL)
- php PDO::FETCH_ASSOC doesnt detect select after ba
- Bulk update SQL Server C#
- IPAddress.[Try]Parse parses 192.168 to 192.0.0.168
相关文章
- “Dynamic operations can only be performed in homog
- Entity Framework 4.3.1 failing to create (/open) a
- Code for inserting data into SQL Server database u
- Delete Every Alternate Row in SQL
- Linux based PHP install connecting to MsSQL Server
- SQL Azure Reset autoincrement
- How do we alias a Sql Server instance name used in
- Is recursion good in SQL Server?
The
Microsoft.SqlServer.Management.Common
namespace resides in theMicrosoft.SqlServer.ConnectionInfo.dll
assembly.Assuming the default installation folders you can find the
Microsoft.SqlServer.ConnectionInfo.dll
assembly in:Where
XXXX
represents the version of SQL Server you're running:If you're running SQL Server 32bit on x64 then instead of
c:\Program Files
usec:\Program Files (x86)
.