Silverlight 4:更新数据库中的数据
我正在寻找一些 Sliverlight 4 应用程序/示例,它使用 MVVM 模式来更新数据库中的数据。
这样我就可以遵循这种方法来开发 Silverlight 应用程序。
任何外部链接都可以。
I am looking for some Sliverlight 4 Application/ example that uses MVVM pattern to update data Back in Data-Base also.
so that I can follow that approach for Developing Silverlight Application.
any External Link will work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Silverlight 无法使用 Linq-To-Sql,因为它无法直接连接到数据库。这是一个关于快速使用 Silverlight 和 MVVM 的很好的教程。
//编辑 - 您不能直接从 Silverlight 使用 L2Sql。您必须调用 WCF 服务在服务器端创建一个操作,然后可以使用 Linq to Sql 从数据库读取/写入。
http://msdn.microsoft.com/en-us/silverlight4trainingcourse.aspx
Silverlight can't use Linq-To-Sql because it cannot connect directly to a database. Here is a good tutorial on getting up to speed with Silverlight and MVVM.
//EDIT -- You cannot use L2Sql directly from Silverlight. You'd have to call a WCF service to create an action on the server side that could then use Linq to Sql to read/write to/from the db.
http://msdn.microsoft.com/en-us/silverlight4trainingcourse.aspx