Silverlight 中的 MVVM
我知道我是 WPF 中的 MVVM 我不知道这个 Silverlight 实现如何分层在顶部提示上来帮助我(我使用的模型的实体框架)
I know I'm MVVM in WPF I do not know how this Silverlight implementation layered on top tips to help me (I'd Entity Framwork for the model I use)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您将以与在 WPF 中相同的方式执行 MVVM。但由于 Silverlight 在客户端上运行 - 您不能在那里使用 EF。您的选择是使用 RIA 服务或购买 DevForce 之类的东西。我正在使用 DevForce,它允许您在客户端上编写几乎相同的 LINQ 查询。
You will do MVVM same way as you do it in WPF. But since Silverlight runs on client - you can't use EF there. Your choices will be to use RIA Services OR buy something like DevForce. I'm using DevForce and it allows you to write pretty much same LINQ queries on a client.
MVVM Light Toolkit 是在 WPF 或 Silverlight 中实现 MVVM 的绝佳框架。
The MVVM Light Toolkit is a great framework for implementing MVVM in WPF or Silverlight.