문제

In workflow i need to send email with field which i update in event receiver ItemUpdated method
but some times workflow finishes first and send empty email, sometimes it works fine. How to be sure that workflow start only after this item ItemUpdated method finished?

  public override void ItemUpdated(SPItemEventProperties properties)
        {
            base.ItemUpdated(properties);
            this.EventFiringEnabled = false;
            ListsEventReceiverHandlers.ItemUpdated(properties);
            this.EventFiringEnabled = true;
        }

that's my event receiver. In ListsEventReceiverHandlers.ItemUpdated(properties); i change some fields and want send changes be work flow< which starts as parallel

올바른 솔루션이 없습니다

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top