CRM 2015 SDK : The deserializer has no knowledge of any type that maps to this name
问题 I am currently working with CRM 2015 SDK. I am simply trying to update a value in C# with this SDK. But for some reasons that I try to figure out, there is a trouble when I save my context . There is the code : foreach (KeyValuePair<string, Account> account in dicAccount) { //Calcul of url/login/date/key/customer values string generatedUrl = Utilities.GenerateURL(url, login, date, key, customer); account.Value.new_Link = generatedUrl; if (!context.IsAttached(account.Value)) { context.Attach