“您必须添加对程序集‘System.Data.Services.Client,Version=3.5.0.0’的引用”
我正在使用 Windows Azure Table 构建一个应用程序。我将对表服务的所有调用封装到其自己的程序集中。此程序集使用 .NET 4.0 Framework 并包含对 System.Data.Service.Client (4.0) 的引用。我可以毫无问题地使用测试项目中的这个程序集。
当我添加此项目作为对 MVC2 Web 应用程序的引用时(再次针对 .NET 4.0 框架),我收到上述错误。我将相同的 DLL (v.4.0) 添加到 Web 项目中,但问题仍然存在。
到底是怎么回事?为什么我需要使用 MVC 项目中的 3.5 DLL?
I'm building an app using Windows Azure Table. I've encapsulated all my calls to the Table Service into its own assembly. This assembly uses the .NET 4.0 Framework and includes a reference to System.Data.Service.Client (4.0). I'm able to use this assembly from a test project with no issue.
When I add this project as a reference to an MVC2 web application — again targeting the .NET 4.0 framework — I get the above error. I added the same DLL (v.4.0) to the web project but the problem persists.
What is going on? Why should I need to use a 3.5 DLL from the MVC project?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我将以下内容添加到我的 web.config 文件中,一切都是copacet。
I added the following to my web.config file and all is copacetic.