银光+ WCF 缺少 system.linq 的 Web 应用程序
我正在创建一个小型 Silverlight LOB 应用程序。我在 Blend 4 中创建了应用程序 + Web,并在 VS2010 中打开了解决方案以添加 WCF 服务。当我这样做时,它在 using System.Linq;
上显示错误。它说:
命名空间“System”中不存在类型或命名空间名称“Linq”(是否缺少程序集引用?)
我让 VS2010 创建了 WCF 服务,并且尝试为 .NET 4 System 重新添加引用.Core.dll。
所以新手开发问题......我做错了什么:)
I'm creating a little Silverlight LOB app. I created the app + web in Blend 4 and I've opened the solution in VS2010 to add the WCF service. When I do so, it shows an error on using System.Linq;
. It says:
The type or namespace name 'Linq' does not exist in the namespace 'System'(are you missing an assembly reference?)
I had VS2010 create the WCF service and I've tried to re-add the reference in for .NET 4 System.Core.dll.
So newbie dev question... What did I do wrong :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您确实看到了 System.Core.dll 程序集,请检查参考资料。
如果您没有看到它,请手动添加。
它应该位于 C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.Core.dll 中(或位于
Program Files (x86)
如果您的操作系统是 x64)。重新编译后应该可以工作了。
Check in the references if you DO see the System.Core.dll assembly.
If you do not see it, add it manually.
It should be in
C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.Core.dll
(or inProgram Files (x86)
if your OS is x64).After recompiling it should then work.