我的Winform项目使用Linq 2 SQL数据访问Azure

发布于 2024-10-23 22:53:10 字数 150 浏览 3 评论 0原文

我有一个使用 LINQ 2 SQL 作为数据访问的 winform 项目。我想将 SQL Server 数据库移动到 SQL Azure。我的数据访问(特别是 L2S)是否有任何问题,或者我必须使用 EF 4 等重写数据访问?我想这应该只适用于更改连接字符串?

谢谢你!

I have a winform project using LINQ 2 SQL as data access. I want to move the SQL Server database to the SQL Azure. Is there any problem with my data access, specifically L2S or I have to rewrite the data access using e.g. EF 4? I guess this should work only with changing the connection string?

Thank you!

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

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

发布评论

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

评论(1

锦上情书 2024-10-30 22:53:10

Linq to SQL 很好,并且可以在 SQL Azure 上工作。 EF 4 也可以工作。但请记住,无论您使用什么工具,您都需要考虑连接重试或操作过程中连接丢失的情况。有关如何处理此问题的详细信息,请参阅本文:

http://blogs.msdn.com/b/cesardelatorre/archive/2010/12/20/handling-sql-azure-connections-issues- using-entity-framework-4-0.aspx

此外,还可以在此处找到更多信息以及可能的连接丢失和要捕获的错误代码的完整列表:

http://social.technet.microsoft.com/ wiki/contents/articles/sql-azure-connection-management-in-sql-azure.aspx?wa=wsignin1.0

希望这会有所帮助。

Linq to SQL is fine and will work against SQL Azure. EF 4 will work too. However keep in mind that regardless of the tool you use you will need to account for connection retries, or connection loss in the middle of an operation. See this article for more information on how to handle this issue:

http://blogs.msdn.com/b/cesardelatorre/archive/2010/12/20/handling-sql-azure-connections-issues-using-entity-framework-4-0.aspx

Also, more information and a complete list of possible connection loss and error codes to trap can be found here:

http://social.technet.microsoft.com/wiki/contents/articles/sql-azure-connection-management-in-sql-azure.aspx?wa=wsignin1.0

Hope this helps.

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