dynamics crm - In CRM 2011 SQL Timeout/Locking issue when processing AssociateRequest -


i have plugin want run synchronously post process because if of requests makes fail i'd roll in 1 transaction. i've encountered issue if try run associaterequest associate record record triggered plugin returns sql timeout. know code correct because i'm using same code associate other records (that aren't firing plugin) , execute fine.

        var referencedentityrelationship = new relationship(referencedentityrelationshipname);         var referencedentityentities = new entityreferencecollection(new entityreference[] { new entityreference(referencedentitylogicalname, new guid(receivedrequest.referencingentityid)) });         var rtn = new associaterequest() { relatedentities = referencedentityentities, relationship = referencedentityrelationship };         rtn.target = new entityreference() { id = responseid, logicalname = dataentitylogicalname }; 

i know can avoid lock running plugin asynchronously. if there failure reason i'm unable roll initial request fired plugin , notify user need fix something. advice on how execute associate requests within plugin against record fired plugin appreciated.


Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -