对于 WCF RIA 服务库项目结构有更好的解释吗?
当您创建 WCF RIA 服务库项目时,会出现两个项目。
- RIAServicesLibrary1
- RIAServicesLibrary1.Web
我很清楚我们需要 RIAServicesLibrary1.Web 项目来保存类似的东西 LinqToEntitiesDomainService
?
但我的问题是:我们如何使用 RIAServicesLibrary 项目?它的使用有真正的意义吗?
When you create WCF RIA Services Library Project then two projects appears.
- RIAServicesLibrary1
- RIAServicesLibrary1.Web
It's clear for me what for we need RIAServicesLibrary1.Web project to keep stuff likeLinqToEntitiesDomainService
?
But my questions is: how we can use RIAServicesLibrary project? Is any real sense of it usage?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
RIAServicesLibrary 可用于在客户端应用程序中直接引用,而无需部署在多层环境(客户端-服务器)中。一旦您想让您的客户端与中央服务器上的 Web 服务进行通信,您将与 .Web 变体进行通信,该变体直接引用了库项目。
The RIAServicesLibrary can be used for directly referencing in client applications that do not need to have to be deployed in a multi-tier environment (client-server). As soon as you want to have your client talk to a webservice on a central server you will communicate to the .Web variant, which has a direct reference to the library project.