在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → Beginning WF_Windows Workflow in .NET 4.0一书的源码

Beginning WF_Windows Workflow in .NET 4.0一书的源码

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:0.89M
  • 下载次数:2
  • 浏览次数:76
  • 发布时间:2020-10-13
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
Beginning WF_Windows Workflow in .NET 4.0一书的源码,是学习windows 工作流用的。基础
【实例截图】
【核心代码】
Beginning_WF_Windows_Workflow_in_.NET_4.0_src
└── Beginning WF
├── Appendix
│   ├── AppendixData
│   │   ├── Change Scripts
│   │   │   ├── DropSqlWorkflowInstanceStoreLogic.sql
│   │   │   ├── DropSqlWorkflowInstanceStoreSchema.sql
│   │   │   ├── Truncate.sql
│   │   │   ├── UninstallCommon.sql
│   │   │   └── UninstallMembership.sql
│   │   └── Create Scripts
│   │   ├── Config.sql
│   │   ├── InstallCommon.sql
│   │   ├── InstallMembership.sql
│   │   ├── Request.sql
│   │   ├── SqlWorkflowInstanceStoreLogic.sql
│   │   ├── SqlWorkflowInstanceStoreSchema.sql
│   │   ├── Tracking.sql
│   │   └── WorkflowManagementService.sql
│   ├── Appendix.sln
│   ├── QCPolicy
│   │   ├── app.config
│   │   ├── Config.dbml
│   │   ├── Config.dbml.layout
│   │   ├── Config.designer.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── QCPolicy.cs
│   │   ├── QCPolicy.csproj
│   │   ├── QCPolicy.Designer.cs
│   │   └── QCPolicy.rules
│   ├── RequestWeb
│   │   ├── About.aspx
│   │   ├── About.aspx.cs
│   │   ├── Account
│   │   │   ├── ChangePassword.aspx
│   │   │   ├── ChangePassword.aspx.cs
│   │   │   ├── ChangePasswordSuccess.aspx
│   │   │   ├── ChangePasswordSuccess.aspx.cs
│   │   │   ├── Login.aspx
│   │   │   ├── Login.aspx.cs
│   │   │   ├── Register.aspx
│   │   │   ├── Register.aspx.cs
│   │   │   └── Web.config
│   │   ├── App_WebReferences
│   │   │   └── ServiceReference1
│   │   │   ├── configuration91.svcinfo
│   │   │   ├── configuration.svcinfo
│   │   │   ├── Reference.svcmap
│   │   │   ├── RequestMethods1.xsd
│   │   │   ├── RequestMethods2.xsd
│   │   │   ├── RequestMethods3.xsd
│   │   │   ├── RequestMethods.disco
│   │   │   ├── RequestMethods.xsd
│   │   │   └── Service1.wsdl
│   │   ├── Default.aspx
│   │   ├── Default.aspx.cs
│   │   ├── Global.asax
│   │   ├── images
│   │   │   ├── additem.png
│   │   │   ├── home.jpg
│   │   │   └── px_trans.gif
│   │   ├── Request
│   │   │   ├── ProcessRequest.aspx
│   │   │   ├── ProcessRequest.aspx.cs
│   │   │   ├── SubmitRequest.aspx
│   │   │   └── SubmitRequest.aspx.cs
│   │   ├── Scripts
│   │   │   ├── jquery-1.3.2.js
│   │   │   ├── jquery-1.3.2.min.js
│   │   │   └── jquery-1.3.2-vsdoc.js
│   │   ├── Site.master
│   │   ├── Site.master.cs
│   │   ├── Styles
│   │   │   ├── Request.css
│   │   │   └── Site.css
│   │   └── Web.config
│   ├── ServiceLayer
│   │   ├── Activities
│   │   │   ├── AssignQueue.cs
│   │   │   ├── AssignRequest.cs
│   │   │   ├── BuildRequestList.cs
│   │   │   ├── CreateRequest.cs
│   │   │   ├── GetRequests.cs
│   │   │   ├── LoadRequest.cs
│   │   │   ├── LookupQueueStats.cs
│   │   │   ├── QueueDetail.cs
│   │   │   ├── RequestQC.cs
│   │   │   └── UpdateRequest.cs
│   │   ├── bin
│   │   │   ├── QCPolicy.pdb
│   │   │   ├── ServiceLayer.pdb
│   │   │   └── UserTasks.pdb
│   │   ├── Extensions
│   │   │   ├── DBConnection.cs
│   │   │   └── PersistRequest.cs
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── ResolveAssemblyReference.cache
│   │   │   ├── ServiceLayer.csproj.FileListAbsolute.txt
│   │   │   └── ServiceLayer.pdb
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Request.dbml
│   │   ├── Request.dbml.layout
│   │   ├── Request.designer.cs
│   │   ├── RequestMethods_Old.xamlx
│   │   ├── RequestMethods.xamlx
│   │   ├── ServiceLayer.csproj
│   │   ├── ServiceLayer.csproj.user
│   │   ├── Web.config
│   │   └── Web_Old.config
│   ├── TestQC
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── QCPolicy.pdb
│   │   │   └── TestQC.pdb
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── ResolveAssemblyReference.cache
│   │   │   ├── TestQC.csproj.FileListAbsolute.txt
│   │   │   └── TestQC.pdb
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Settings.cs
│   │   │   └── Settings.settings
│   │   ├── TestQC.csproj
│   │   ├── Workflow1.cs
│   │   └── Workflow1.designer.cs
│   └── UserTasks
│   ├── Activities
│   │   ├── AssignQueue.cs
│   │   ├── AssignQueueInstance.cs
│   │   ├── CreateQueueInstance.cs
│   │   ├── GetQueueInstances.cs
│   │   ├── LoadQueueInstance.cs
│   │   ├── LookupQueueStats.cs
│   │   ├── RequestQC.cs
│   │   └── UnAssignQueueInstance.cs
│   ├── app.config
│   ├── bin
│   │   └── Debug
│   │   ├── QCPolicy.pdb
│   │   ├── UserTasks.dll.config
│   │   └── UserTasks.pdb
│   ├── CompleteInstance.xaml
│   ├── Extensions
│   │   ├── DBConnection.cs
│   │   ├── PersistQueueInstance.cs
│   │   └── QueueTracking.cs
│   ├── obj
│   │   └── Debug
│   │   ├── CompleteInstance.g.cs
│   │   ├── CompleteInstance.g.xaml
│   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── InProcessTempFiles
│   │   │   ├── CompleteInstance.g.cs
│   │   │   ├── CompleteInstance.g.xaml
│   │   │   └── _UserTasks.g.cs
│   │   ├── ResolveAssemblyReference.cache
│   │   ├── UserTasks.csproj.FileListAbsolute.txt
│   │   ├── UserTasks.csproj.XamlGeneratedCodeFileListAbsolute.txt
│   │   ├── UserTasks.csproj.XamlGeneratedXamlFileListAbsolute.txt
│   │   ├── _UserTasks.g.cs
│   │   ├── UserTasks.pdb
│   │   └── _XamlTemporaryAssembly_.pdb
│   ├── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   ├── QueueDetail.cs
│   ├── UserTasks.csproj
│   ├── UserTasks.dbml
│   ├── UserTasks.dbml.layout
│   └── UserTasks.designer.cs
├── Chapter01
│   ├── Chapter01
│   │   ├── App.config
│   │   ├── Chapter01.csproj
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   └── Workflow1.xaml
│   └── Chapter01.sln
├── Chapter02
│   ├── Chapter02
│   │   ├── Chapter02.csproj
│   │   ├── Program.cs
│   │   └── Properties
│   │   └── AssemblyInfo.cs
│   └── Chapter02.sln
├── Chapter03
│   ├── Chapter03
│   │   ├── App.config
│   │   ├── Chapter03.csproj
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   └── Workflow1.xaml
│   └── Chapter03.sln
├── Chapter04
│   ├── Chapter04.sln
│   └── OrderProcess
│   ├── App.config
│   ├── Order.cs
│   ├── OrderProcess.csproj
│   ├── OrderWF.xaml
│   ├── Program.cs
│   └── Properties
│   └── AssemblyInfo.cs
├── Chapter05
│   ├── Chapter05.sln
│   └── OrderProcess
│   ├── App.config
│   ├── Order.cs
│   ├── OrderProcess.csproj
│   ├── OrderWF.xaml
│   ├── Program.cs
│   └── Properties
│   └── AssemblyInfo.cs
├── Chapter06
│   ├── Chapter06.sln
│   └── OrderProcess
│   ├── App.config
│   ├── Order.cs
│   ├── OrderProcess.csproj
│   ├── OrderWF.xaml
│   ├── Program.cs
│   └── Properties
│   └── AssemblyInfo.cs
├── Chapter07
│   ├── Chapter07.sln
│   └── OrderProcess
│   ├── App.config
│   ├── LookupItem.cs
│   ├── Order.cs
│   ├── OrderDiscount.cs
│   ├── OrderProcess.csproj
│   ├── OrderWF.xaml
│   ├── Program.cs
│   └── Properties
│   └── AssemblyInfo.cs
├── Chapter08
│   ├── Chapter08.sln
│   └── LibraryReservation
│   ├── App.config
│   ├── Branch
│   │   ├── LibraryReservation.exe.config
│   │   └── LibraryReservation.pdb
│   ├── CreateRequest.cs
│   ├── CreateResponse.cs
│   ├── LibraryReservation.csproj
│   ├── Program.cs
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── Reservation.cs
│   └── ReservationWF.cs
├── Chapter09
│   ├── Branch
│   │   ├── LibraryReservation.exe.config
│   │   └── LibraryReservation.pdb
│   ├── Chapter09.sln
│   └── LibraryReservation
│   ├── App.config
│   ├── ApplicationInterface.cs
│   ├── App.xaml
│   ├── App.xaml.cs
│   ├── ClientService.cs
│   ├── CreateRequest.cs
│   ├── CreateResponse.cs
│   ├── LibraryReservation.csproj
│   ├── ListBoxTextWriter.cs
│   ├── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   ├── Reservation.cs
│   ├── Reservations.xaml
│   ├── Reservations.xaml.cs
│   ├── ReservationWF.cs
│   └── WaitForInput.cs
├── Chapter10
│   ├── BookInventory
│   │   ├── BookInfo.cs
│   │   ├── BookInventory2.xamlx
│   │   ├── BookInventory.csproj
│   │   ├── BookInventory.csproj.user
│   │   ├── BookInventory.xamlx
│   │   ├── PerformLookup2.cs
│   │   ├── PerformLookup.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   └── Web.config
│   ├── BookLookup
│   │   ├── App.config
│   │   ├── BookLookup.csproj
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Service References
│   │   │   └── ServiceReference1
│   │   │   ├── BookInventory21.xsd
│   │   │   ├── BookInventory22.xsd
│   │   │   ├── BookInventory2.disco
│   │   │   ├── BookInventory2.xsd
│   │   │   ├── BookLookup.ServiceReference1.IBookInventory.LookupBook2.xaml
│   │   │   ├── configuration91.svcinfo
│   │   │   ├── configuration.svcinfo
│   │   │   ├── Reference.cs
│   │   │   ├── Reference.svcmap
│   │   │   └── Service1.wsdl
│   │   └── Workflow1.xaml
│   └── Chapter10.sln
├── Chapter11
│   ├── Chapter11.sln
│   └── LeadGenerator
│   ├── Activities
│   │   ├── CreateLead.cs
│   │   └── WaitForInput.cs
│   ├── AddLead.xaml
│   ├── AddLead.xaml.cs
│   ├── app.config
│   ├── ApplicationInterface.cs
│   ├── App.xaml
│   ├── App.xaml.cs
│   ├── LeadData.dbml
│   ├── LeadData.dbml.layout
│   ├── LeadData.designer.cs
│   ├── LeadGenerator.csproj
│   ├── LeadGeneratorWF.cs
│   ├── ListBoxTextWriter.cs
│   └── Properties
│   ├── AssemblyInfo.cs
│   ├── Resources.Designer.cs
│   ├── Resources.resx
│   ├── Settings.Designer.cs
│   └── Settings.settings
├── Chapter12
│   ├── Chapter12.sln
│   └── LeadGenerator
│   ├── Activities
│   │   ├── AddComment.cs
│   │   ├── CreateLead.cs
│   │   └── WaitForInput.cs
│   ├── AddLead.xaml
│   ├── AddLead.xaml.cs
│   ├── app.config
│   ├── ApplicationInterface.cs
│   ├── App.xaml
│   ├── App.xaml.cs
│   ├── Extensions
│   │   ├── CommentExtension.cs
│   │   └── DBExtension.cs
│   ├── LeadData.dbml
│   ├── LeadData.dbml.layout
│   ├── LeadData.designer.cs
│   ├── LeadGenerator.csproj
│   ├── LeadGeneratorWF.cs
│   ├── ListBoxTextWriter.cs
│   └── Properties
│   ├── AssemblyInfo.cs
│   ├── Resources.Designer.cs
│   ├── Resources.resx
│   ├── Settings.Designer.cs
│   └── Settings.settings
├── Chapter13
│   ├── Chapter13.sln
│   └── LeadGenerator
│   ├── Activities
│   │   ├── AddComment.cs
│   │   ├── CreateLead.cs
│   │   └── WaitForInput.cs
│   ├── AddLead.xaml
│   ├── AddLead.xaml.cs
│   ├── app.config
│   ├── ApplicationInterface.cs
│   ├── App.xaml
│   ├── App.xaml.cs
│   ├── Extensions
│   │   ├── CommentExtension.cs
│   │   ├── DBExtension.cs
│   │   ├── ListBoxTrackingParticipant.cs
│   │   └── SqlTrackingParticipant.cs
│   ├── LeadData.dbml
│   ├── LeadData.dbml.layout
│   ├── LeadData.designer.cs
│   ├── LeadGenerator.csproj
│   ├── LeadGeneratorWF.cs
│   ├── ListBoxTextWriter.cs
│   └── Properties
│   ├── AssemblyInfo.cs
│   ├── Resources.Designer.cs
│   ├── Resources.resx
│   ├── Settings.Designer.cs
│   └── Settings.settings
├── Chapter14
│   ├── Chapter14.sln
│   └── LeadGenerator
│   ├── Activities
│   │   ├── AddComment.cs
│   │   ├── AssignLead.cs
│   │   ├── CreateAssignment.cs
│   │   ├── CreateLead.cs
│   │   └── WaitForInput.cs
│   ├── AddLead.xaml
│   ├── AddLead.xaml.cs
│   ├── app.config
│   ├── ApplicationInterface.cs
│   ├── App.xaml
│   ├── App.xaml.cs
│   ├── Extensions
│   │   ├── CommentExtension.cs
│   │   ├── DBExtension.cs
│   │   ├── ListBoxTrackingParticipant.cs
│   │   └── SqlTrackingParticipant.cs
│   ├── LeadData.dbml
│   ├── LeadData.dbml.layout
│   ├── LeadData.designer.cs
│   ├── LeadGenerator.csproj
│   ├── LeadGeneratorWF.cs
│   ├── ListBoxTextWriter.cs
│   └── Properties
│   ├── AssemblyInfo.cs
│   ├── Resources.Designer.cs
│   ├── Resources.resx
│   ├── Settings.Designer.cs
│   └── Settings.settings
├── Chapter15
│   ├── Chapter15.sln
│   └── LeadGenerator
│   ├── Activities
│   │   ├── AddComment.cs
│   │   ├── AssignLead.cs
│   │   ├── CreateAssignment.cs
│   │   ├── CreateLead.cs
│   │   └── WaitForInput.cs
│   ├── AddLead.xaml
│   ├── AddLead.xaml.cs
│   ├── app.config
│   ├── ApplicationInterface.cs
│   ├── App.xaml
│   ├── App.xaml.cs
│   ├── Extensions
│   │   ├── CommentExtension.cs
│   │   ├── DBExtension.cs
│   │   ├── ListBoxTrackingParticipant.cs
│   │   ├── PersistAssignment.cs
│   │   ├── PersistLead.cs
│   │   └── SqlTrackingParticipant.cs
│   ├── LeadData.dbml
│   ├── LeadData.dbml.layout
│   ├── LeadData.designer.cs
│   ├── LeadGenerator.csproj
│   ├── LeadGeneratorWF.cs
│   ├── ListBoxTextWriter.cs
│   └── Properties
│   ├── AssemblyInfo.cs
│   ├── Resources.Designer.cs
│   ├── Resources.resx
│   ├── Settings.Designer.cs
│   └── Settings.settings
├── Chapter16
│   ├── Chapter16.sln
│   ├── LeadGenerator
│   │   ├── Activities
│   │   │   ├── AddComment.cs
│   │   │   ├── AssignLead.cs
│   │   │   ├── CreateLead.cs
│   │   │   └── WaitForInput.cs
│   │   ├── AddLead.xaml
│   │   ├── AddLead.xaml.cs
│   │   ├── app.config
│   │   ├── ApplicationInterface.cs
│   │   ├── App.xaml
│   │   ├── App.xaml.cs
│   │   ├── Extensions
│   │   │   ├── CommentExtension.cs
│   │   │   ├── DBExtension.cs
│   │   │   ├── ListBoxTrackingParticipant.cs
│   │   │   ├── PersistLead.cs
│   │   │   └── SqlTrackingParticipant.cs
│   │   ├── LeadData.dbml
│   │   ├── LeadData.dbml.layout
│   │   ├── LeadData.designer.cs
│   │   ├── LeadGenerator.csproj
│   │   ├── LeadGeneratorWF.cs
│   │   ├── ListBoxTextWriter.cs
│   │   └── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   └── LeadResponse
│   ├── app.config
│   ├── ApplicationInterface.cs
│   ├── App.xaml
│   ├── App.xaml.cs
│   ├── AssignmentWF.cs
│   ├── CompleteAssignment.cs
│   ├── CreateAssignment.cs
│   ├── FollowUpLead.xaml
│   ├── FollowUpLead.xaml.cs
│   ├── LeadResponse.csproj
│   ├── ListBoxTextWriter.cs
│   ├── PersistAssignment.cs
│   └── Properties
│   ├── AssemblyInfo.cs
│   ├── Resources.Designer.cs
│   ├── Resources.resx
│   ├── Settings.Designer.cs
│   └── Settings.settings
├── Chapter17
│   ├── Chapter17.sln
│   └── Wedding
│   ├── App.config
│   ├── Program.cs
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── Wedding.csproj
│   └── Workflow1.xaml
├── Chapter17_Partial
│   ├── Chapter17.sln
│   └── Wedding
│   ├── App.config
│   ├── Program.cs
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── Wedding.csproj
│   └── Workflow1.xaml
├── Chapter18
│   ├── Chapter18.sln
│   └── ShoppingList
│   ├── PrintList.cs
│   ├── Program.cs
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── ShoppingList.csproj
│   └── SortCollection.cs
├── Chapter19
│   ├── Chapter19.sln
│   ├── SampleInterop
│   │   ├── App.config
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── SampleInterop.csproj
│   │   └── Workflow1.xaml
│   └── Workflow35
│   ├── CustomActivity.cs
│   ├── CustomActivity.Designer.cs
│   ├── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Settings.cs
│   │   └── Settings.settings
│   ├── Workflow1.cs
│   ├── Workflow1.designer.cs
│   └── Workflow35.csproj
├── Chapter20
│   ├── Chapter20.sln
│   ├── PolicySample
│   │   ├── App.config
│   │   ├── MyActivity.xaml
│   │   ├── PolicySample.csproj
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── UpdateCounter.cs
│   │   └── Workflow1.xaml
│   └── QCPolicy
│   ├── DataElements.cs
│   ├── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Settings.cs
│   │   └── Settings.settings
│   ├── QCPolicy.cs
│   ├── QCPolicy.csproj
│   ├── QCPolicy.Designer.cs
│   └── QCPolicy.rules
└── SQL
├── Chapter11Data
│   ├── Change Scripts
│   │   ├── DropSqlWorkflowInstanceStoreLogic.sql
│   │   ├── DropSqlWorkflowInstanceStoreSchema.sql
│   │   └── Truncate.sql
│   └── Create Scripts
│   ├── Lead.sql
│   ├── SqlWorkflowInstanceStoreLogic.sql
│   └── SqlWorkflowInstanceStoreSchema.sql
├── Chapter12Data
│   ├── Change Scripts
│   │   ├── DropSqlWorkflowInstanceStoreLogic.sql
│   │   ├── DropSqlWorkflowInstanceStoreSchema.sql
│   │   └── Truncate.sql
│   └── Create Scripts
│   ├── Lead.sql
│   ├── SqlWorkflowInstanceStoreLogic.sql
│   └── SqlWorkflowInstanceStoreSchema.sql
├── Chapter13Data
│   ├── Change Scripts
│   │   ├── DeleteTracking.sql
│   │   ├── DropSqlWorkflowInstanceStoreLogic.sql
│   │   ├── DropSqlWorkflowInstanceStoreSchema.sql
│   │   └── Truncate.sql
│   └── Create Scripts
│   ├── Lead.sql
│   ├── SqlWorkflowInstanceStoreLogic.sql
│   ├── SqlWorkflowInstanceStoreSchema.sql
│   └── Tracking.sql
├── Chapter14Data
│   ├── Change Scripts
│   │   ├── DeleteTracking.sql
│   │   ├── DropSqlWorkflowInstanceStoreLogic.sql
│   │   ├── DropSqlWorkflowInstanceStoreSchema.sql
│   │   └── Truncate.sql
│   └── Create Scripts
│   ├── Lead.sql
│   ├── SqlWorkflowInstanceStoreLogic.sql
│   ├── SqlWorkflowInstanceStoreSchema.sql
│   └── Tracking.sql
├── Chapter15Data
│   ├── Change Scripts
│   │   ├── DeleteTracking.sql
│   │   ├── DropSqlWorkflowInstanceStoreLogic.sql
│   │   ├── DropSqlWorkflowInstanceStoreSchema.sql
│   │   └── Truncate.sql
│   └── Create Scripts
│   ├── Lead.sql
│   ├── SqlWorkflowInstanceStoreLogic.sql
│   ├── SqlWorkflowInstanceStoreSchema.sql
│   └── Tracking.sql
└── Chapter16Data
├── Change Scripts
│   ├── DeleteTracking.sql
│   ├── DropSqlWorkflowInstanceStoreLogic.sql
│   ├── DropSqlWorkflowInstanceStoreSchema.sql
│   └── Truncate.sql
└── Create Scripts
├── Lead.sql
├── SqlWorkflowInstanceStoreLogic.sql
├── SqlWorkflowInstanceStoreSchema.sql
└── Tracking.sql

142 directories, 506 files

标签:

实例下载地址

Beginning WF_Windows Workflow in .NET 4.0一书的源码

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警