WF4 初学者问题 - WF4 什么时候有用?
例如,如果我想在常规的 asp.net 系统中使用传统的审批类型工作流程 下订单前需要批准的订单。而不是采用传统的 OrderStatus 的枚举,我可以从使用 microsoft WF4(工作流程版本 4)中受益吗 或者我会生成更多的复杂性和更多的代码而没有任何额外的好处?
If I want to use a traditional approval type workflow in a regular asp.net system, for example
an order that needs an approval before order is placed. Rather than having the traditional
enum for OrderStatus, can I benefit from using microsoft WF4 (Workflow version 4) for this
or will I just generate more complexity and more code for no added benefit?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
任何时候您有一个像 WF4 这样的长时间运行的操作都是一个很好的可能性。事实上,图形设计器允许您显示实际运行的过程,而不是 Visio 的副本,这也是一个巨大的好处。
然而,WF4 有一个学习曲线,有时您必须以 WF4 方式而不是以前的 C#/VB 方式做事。也就是说,肯定有一个好处,就像未处理批准请求一样,比方说,在 WF4 中,14 天很容易做到。
Any time you have a long running operation like this WF4 is a good possibility. The fact that the graphical designer allows you to show the actual running process, not a Visio copy of it, is also a huge benefit.
There is however a learning curve to WF4 and there are times you have to do things the WF4 way instead of the C#/VB way you did before. That said there is certainly a benefit, thinks like an approval request not being handled in, lets say, 14 days is very easy to do in WF4.