F# 项目中缺少 System.Data
我的目标是 .NET 3.5,但无法让 System.Data 在 Intellisense 中出现。我缺少什么?
I'm targeting .NET 3.5, but cannot get System.Data to come up in Intellisense. What am I missing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,这是“设计使然”,而不是 F# 中的错误。默认情况下,我们发布的项目模板(在 Visual Studio 2010 中)添加以下引用:
对于 ADO.NET、WPF、WCF 等任何特定库,您将需要添加所需的特定程序集引用。
Yes, this is 'by design' and not a bug in F#. By default the project templates we ship (in Visual Studio 2010) add the following references:
For any specific libraries like ADO.NET, WPF, WCF, etc. you will need to add the specific assembly references you need.
必须添加参考。我想我太习惯 C# 模板为我做这件事了。
Had to add a reference. I guess I was too used to the C# template doing this for me.