문제

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