如何在 PRISM 4 中使用 WCF RIA 服务?
我正在使用 Prism 4 和 WCF RIA 服务开发 Silverlight 应用程序。 我在谷歌上搜索以获取解释这一点的示例,但未能获得任何成功的输出。
我对如何在 PRISM 应用程序中使用 RIA 服务感到困惑。
请建议任何为此提供示例的链接。 帮我。
I am developing Silverlight application with Prism 4 and WCF RIA service.
I had searched on google to get sample explaining this, but failed to get any successful output.
I am confuse about how to use RIA service in PRISM Application.
Please suggest any link which provide sample for this.
Help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 WCF RIA 和 PRISM 4 来开发 Silverlight 应用程序。每种技术都针对应用程序的不同部分。
WCF RIA 服务为您提供了从客户端到服务器进行通信以保留数据的工具。
PRISM4 旨在允许您构建模块化、架构良好的 Silverlight(和 WPF)应用程序。
我有一个使用这种方法构建的大型 LOB 应用程序。我使用 PRISM4 模块化将模块加载到我的应用程序中。每个模块中的视图模型连接到 WCF RIA 域服务上下文以获取和修改数据。
我建议查看 Nikhilk 的 RIA 方面的 Book Club 示例应用程序 http: //www.nikhilk.net/RIA-Services-MIX10-Slides-Code.aspx。
You can use WCF RIA and PRISM 4 to develop a Silverlight application. Each of the technologies is targeted at a different part of your application.
WCF RIA services provides you with the tools to communicate from client to server to persist your data.
PRISM4 is designed to allow you to construct modular well architected Silverlight (and WPF) applications.
I have a large LOB application built using this approach. I use PRISM4 modularity to load modules into my application. The viewmodels in each of the modules connect to WCF RIA domain service contexts to get and modify data.
I'd recommend looking at Nikhilk's Book Club sample application for the RIA side http://www.nikhilk.net/RIA-Services-MIX10-Slides-Code.aspx.