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'

有帮助吗?

解决方案

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.

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