从 wpf 应用程序重新启动 MSDTC 服务
使用多个实体框架数据模型时,MSDTC 服务不断自行关闭。唯一的解决方案是手动重新启动 MSDTC 服务,如何在 wpf 应用程序中使用 c# 重新启动服务?
谢谢
MSDTC service keeps shutting it self down when using multiple entity framework data models. The only solution is to manually restart the MSDTC service, how can I restart the service using c# in a wpf application?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
MSDTC 作为常规 Windows 服务以“分布式事务协调器”的名称运行。您可以使用 ServiceController 类(使用 System.ServiceProcess)停止和启动它。
MSDTC runs as a regular Windows service under the name "Distributed Transaction Coordinator". You can stop and start it using the ServiceController class (using System.ServiceProcess).