Visual Studio Express 无法更改数据源

发布于 2024-12-11 20:10:38 字数 332 浏览 0 评论 0原文

我正在尝试将 SQL Server 数据源添加到 C# 控制台应用程序。

当我尝试向 .dbml 文件添加新连接时,唯一可用的数据源是 Microsoft SQL Server 数据库文件 (sqlclient),而我需要 Microsoft SQL Server (sqlclient)。

更改按钮是灰色的,所以我无法更改。

在此处输入图像描述

如何更改此设置?

(我想知道这是否是一个错误,因此尝试卸载/重新安装 Visual Studio - 但仍然不高兴。)

I am trying to add a SQL Server data source to a C# console app.

When I try and add a new connection to my .dbml file the only Data Source available is Microsoft SQL Server Database File (sqlclient) whereas I need Microsoft SQL Server (sqlclient).

The change button is grayed out, so I can't change it.

enter image description here

How do I change this?

(I wondered if it was a bug, so tried uninstalling/reinstalling Visual Studio - but still no joy.)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

眼眸 2024-12-18 20:10:38

这实际上是 Express 产品的限制,您可以通过手动修改 SQL Server 连接字符串来解决它。有关更多信息,请查看此SO帖子

This is actually a limitation of the Express product and you can get around it with a modification of your SQL Server connection string manually. For more information have a look at this SO Post.

念三年u 2024-12-18 20:10:38

我通过使用上面帖子中的解决方法得到了这个工作:

解决方法:

1. 在 Visual Web Developer Express 中打开您的解决方案。它不会加载解决方案中的某些项目,但没关系。

2.在数据库资源管理器中从 SQL Server 建立与所需数据库的新连接。

3.添加新的类库项目。

4.添加 LINQ to SQL Classes 项并将其链接到您的数据库。

5.关闭解决方案。

6.在 Visual C# Express 中打开解决方案。

现在您有了一个链接到 SQL 的 LINQ to SQL 类库
Visual C# Express 中的服务器数据库。

I got this working by using the workaround from the post above:

Workaround:

1.Open your solution in Visual Web Developer Express. It will not load some of the projects in the solution but it is ok.

2.Make a new connection in Database Explorer to the required database from SQL Server.

3.Add a new class library project.

4.Add a LINQ to SQL Classes item and link it to your database.

5.Close the solution.

6.Open the solution in Visual C# Express.

Now you have a LINQ to SQL classes library that is linked to your SQL
Server database in Visual C# Express.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文