本文介绍了内容相关的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有两个RECEIVE活动与EmployeeID相关. RECEIVE 1将Employee对象作为输入.如果从传递相同Employee对象的客户端(例如,employee id为1)多次调用了用于初始化查询相关初始化程序的第一个接收,则将创建尽可能多的实例.现在,如果客户端通过将员工ID传递为1来调用第二个RECEIVE方法(该方法更新了employee对象的某些属性),是否将更新所有实例?

I've Two RECEIVE activities correlates on say, EmployeeID. RECEIVE 1 takes Employee object as input. If the first receive which initializes the Query correlation initializer is called multiple times from the clients passing the same Employee object (example, employee id as 1), there will be as much instances will be created. Now, if a client calls the second RECEIVE method (which updates some of the properties of the employee object) by passing the employee Id as 1, will all the instances be updated?

推荐答案


这篇关于内容相关的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 02:06