Reputation: 5
I'm studying the CRM SDK.
When I trying the sample in msdn http://msdn.microsoft.com/en-us/library/gg328180%28v=crm.6%29.aspx
public void Run(ServerConnection.Configuration serverConfig, bool promptforDelete)
I got the error: The type name 'Configuration' does not exist in the type 'Microsoft.SqlServer.Management.Common.ServerConnection'
Upvotes: 0
Views: 3321
Reputation: 35235
Most probably you have a class name mismatch. Your code is referencing Microsoft.SqlServer.Management.Common.ServerConnection
for ServerConnection.Configuration
in function, however it really should be custom helper class ServerConnection
which is used throughout most of CRM samples.
Upvotes: 3