使用 WF 4.0 活动查询数据库
我正在尝试创建一些通用活动来选择/更新/插入数据库中的记录。
是否建议从 WF 活动执行此类数据库操作?或者我应该在 WCF 服务中抽象这些操作并从 WF 中使用它?
我想避免创建 WCF 服务的唯一原因是所涉及的 WF/查询相当简单。请指教。
I am trying to create few generic activities to select/update/insert records in database.
Is it advisable to do such database operations from WF activities ? Or should I abstract these operations in a WCF service and consume it from the WF ?
Only reason I want to avoid creating a WCF service is that the WF/queries involved are fairly simple. Please advice.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从您的活动中进行数据库查询是没有问题的。事实上,WF 团队在 CodePlex 上创建了一个 WF ADO.NET 活动包,它的作用只是那。
There is no problem doing database queries from your activities. In fact the WF team has create an WF ADO.NET Activity Pack on CodePlex that does just that.