WF4状态机 CTP1发布

简介:

今天上午刚刚写了一篇文章其中提到WF4 的状态机最近要发布没想到这么快。

地址:http://wf.codeplex.com/releases/view/43586

WF State Machine Activity Pack CTP 1

The Microsoft WF State Machine Activity Pack CTP 1 is the first community technology preview (CTP) release of a state machine implementation based on Windows Workflow Foundation in .NET Framework 4 (WF 4). The implementation contains not only a state machine runtime but also a graphical state machine designer.

还发布了WF ADO.NET Activity Pack CTP 1

The Microsoft WF ADO.NET Activity Pack CTP 1 is the first community technology preview (CTP) release of ADO.NET activities implementation based on Windows Workflow Foundation in .NET Framework 4 (WF 4). The implementation contains a set of activities as well as designers based on ADO.NET Data Providers , which enable access to a database through SQL commands or stored procedures within a workflow.

The Microsoft WF ADO.NET Activity Pack CTP 1 includes the following three activities:

  • ExecuteSqlQuery activity allows you to query a database using SQL statement or stored procedure and process the query result.
  • ExecuteSqlQuery<T> activity allows you to get a collection of objects from the query result to be used in the workflow.
  • ExecuteSqlNonQuery activity allows you to modify database using SQL statement or stored procedure, such as INSERT, UPDATE and DELETE.

这里有一篇介绍:http://blogs.msdn.com/flow/archive/2010/04/21/wf-state-machine-activity-pack-ctp1-released.aspx

大家快去体验吧。

 

 

本文转自生鱼片的博客园博客,原文链接:http://www.cnblogs.com/carysun/archive/2010/04/21/WF4-StateMachine.html/,如需转载请自行联系原作者

相关文章
|
缓存
理解alivc_framework 状态机
背景: 对与现在组件状态现状以及转换过程有点疑惑,自己边熟悉代码边思考。c++标准库以及Boost库并没有提供这种关于状态机类似的基类模板,原因是因为外面类复杂多样,不同类的状态没有共性。但是聚焦到音视频模块,这些类有着类似的特性,因此我们可以简单的总结和基类化一些基类模板,供模块继承使用。 正文: 这里指的模块类,一般是比较大的功能模块的接口类或者代理类(常见的如decode,encode
1426 0