从 Silverlight 4 访问 SQL Server 2005?

发布于 2025-01-04 20:36:06 字数 244 浏览 2 评论 0原文

如果我使用 Silverlight 4 和 WCF 访问我的 SQL Server 2005 DB - 会出现问题吗?我是否必须使用 SQL Server 2008 /R2 才能做到这一点 - 或者一切都一样(我确信因为 irecall 阅读了一些内容,SL4 和 RIA 仅适用于 SQL Server 2008/R2)。

聚苯乙烯 如果您有更好的方法(更直接的方法)在不使用 WCf(=RIA) 的情况下访问 SQL DB,那就更好了。

If i am using Silverlight 4 and WCF to access my SQL Server 2005 DB - is it going to be a problem? Do i have to use SQL Server 2008 /R2 to do that - or will EVERYTHING work the same (i am making sure because irecall reading somewere that SL4 & RIA works only with SQL Server 2008/R2).

P.S
if you have a better way (a more direct way) to access SQL DB without the use of WCf(=RIA) it will be even better.

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

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

发布评论

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

评论(1

一抹微笑 2025-01-11 20:36:06

由于 Silverlight 是客户端,因此它仅使用 WCF 连接到数据源。这意味着您使用的 SQL 版本与您拥有的 Silverlight 版本无关。两者没有直接联系。这使得 Silverlight 能够做它最擅长的事情(显示和收集数据以及执行其他 UI“事情”)。

另一方面,WCF 几乎可以使用您想要使用的任何数据源。它可以从 MySQL 数据库、所有版本的 SQL 数据库以及基本上可以通过代码连接到的任何其他数据库中提取数据。

RIA 构建在 WCF 之上,因此 RIA 有一些限制。有一个问题更详细地讨论了这个问题:RIA 服务与 RIA 服务相比。 WCF 和共享代码

因此,您问题的简单答案是否定的,使用 SQL 2005 不会有问题,并且没有更直接的方法将 Silverlight 连接到 SQL 数据库。

Because Silverlight is client-side, it uses only WCF to connect to data sources. That means that it really doesn't matter what version of SQL you are using relative to what version of Silverlight you have. The two are not connected directly. This allows Silverlight to do what it does best (display and gather data and do other UI "stuff").

WCF, on the other hand, can use almost any data source you can dream of using. It can pull from MySQL databases, SQL databases of all versions, and basically anything else that it can connect to via code.

RIA is built on top of WCF so there are some limitations on RIA. There is a question that goes through this in some more detail: RIA Services Vs. WCF and Shared Code

So, the simple answer to your question is no, using SQL 2005 will not be a problem and no, there isn't a more direct way to connect Silverlight to your SQL database.

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