Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm facing an issue when trying to create related entities on the post operation of the create step for a entity.

Here is the description of my problem. There are 3 entities A, B, C in my system where B & C are the related entities(N:1) of A.  On the Create step, in the Post Operation, for the entity A, trying to create the records for B and C  by assigning the A's ID(guid) for the look-up(relation). This throws me the error saying Entity Id must be specified.....

Weird thing is the ``same plugin, registered in the same way works fine in my QA environment.

Following is the error that is produced. Unhanded Exception:System.ServiceModel.FaultException1[[Microsoft.Xrm.Sdk.OrganizationServiceFault, Microsoft.Xrm.Sdk, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]:` Entity Id must be specified for Update Detail:

Really need help on this.... Thanks in advance..

share|improve this question
1  
Have you tried attaching the debugger? – James Wood Nov 18 '12 at 16:49
Show us some code :) – Greg Owens Nov 19 '12 at 9:40

1 Answer

Check what values you have by debugging. Now, attaching a debug in a plug-in isn't sweet but it's a lot better than guessing or creating log files. Does the entity have an id right before you update it?

It could help to show some code as an example.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.