I am developing an application to carry out pre-defined "tasks" on MSSQL database tables. It is really a tool to help with some repetitive data conversion/import tasks we have.
In its SIMPLEST form it could be an "instruction" acting on a table ie. Take the contents of Field A and merge with Field B then write to Field C
I have implemented the basic framework (using SQL SMO) which allows for connecting to the database, selecting the table and fields and defining the output table and that is working fine.
I now need to implement some kind of scripting between the two so that I can
a. Build the "actions" using c#
b. Have some method of testing them?
c. Save these individual actions for future
d. Perhaps "string" them together to form more complex actions.
I am being drawn to using the Workflow Foundation classes, but (a) I dont know how easy this is going to be to integrate within my WinForms application and (b) Are there any other more practical options that anyone has found workable
I am using C# .NET 3.5 VS2008
If anyone can offer any pointers I would appreciate it.
Roger Somerset UK