如何在 ASP.NET MVC 3 解决方案中将 NServiceBus 与 NServiceBus.Ninject-CI 结合使用的示例
我想使用 ASP.NET MVC 3 来试验 NServiceBus。我有一个安装了 NServiceBus 以及 NinjectMVC3 和 NServiceBus.Ninject-CI 的解决方案。问题是,我不知道如何在 App_Start 的 NinjectMVC3.cs 文件中设置 NServiceBus 内容。
相当烦人的是,我无法找到任何有关如何使用 NServiceBus.Ninject-CI 的示例(我讨厌人们不费心给出如何使用他们的东西的示例)。
有人可以帮我开始吗?
I would like to experiment with NServiceBus using ASP.NET MVC 3. I've got a solution with NServiceBus installed, plus NinjectMVC3 and NServiceBus.Ninject-CI. Trouble is, I have no idea how to setup NServiceBus stuff in the NinjectMVC3.cs file in App_Start.
Rather annoyingly I'm having trouble finding any examples of how to use NServiceBus.Ninject-CI (I hate it when people don't bother giving examples of how to use their stuff).
Can someone help me get started please?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将这样的模块加载到内核中以提供对总线的访问
阅读 NServiceBus 文档了解如何配置 NServiveBus:
http://docs.pspecial.net/samples/web/asp-mvc -应用程序/
Load a module like this into the kernel to provide access to the bus
Read the NServiceBus documentation about how to configure NServiveBus:
http://docs.particular.net/nservicebus/containers/ninject
http://docs.particular.net/samples/web/asp-mvc-application/
希望这会对某人有所帮助。我在寻找让 ninject 在 NServiceBus 中工作的示例代码时遇到了很多麻烦。
下面的代码对我来说可以代替更常见的 Castle 版本:
ninject 模块是常用格式,即:
Hopefully this will help someone. I had a lot of trouble finding sample code for getting ninject working within NServiceBus.
This code below works for me in place of the more common Castle version:
with the ninject module being the usual format, ie: