Hello,
I have 3 plugins registred to an entity with the following information :
- entity : quote.
- Pre operation : PreQuoteUpdate (Synchronous, filtering attributes => StateCode, statusCode)
- Post operation : PostQuoteUpdate (Synchronous, filtering attributes => StateCode, statusCode)
- Post operation : PostQuoteUpdate (ASynchronous, filtering attributes => StateCode, statusCode)
In a console application i execute the following code :
en["statuscode"] = new OptionSetValue(Cancelled);
ServiceProxy.Update(en);
The plugings are fired twice. If i update another attribute in this application console beside StateCode, statusCode ... the plugins will not fired twice.
*This post is locked for comments