银光+ RIA 实体域服务最佳实践:每个域有多少个实体?
我有一个包含无数实体的数据库,我观看了 Tim Heuer 关于 Silverlight 和 Silverlight 的视频。 RIA Services,他解释了如何生成 DomainService。
我的问题是,我应该为每个实体使用许多域服务,还是将它们连同所有查询一起合并到一个大的域服务中?
I have a database with a gazillion entities, I watched Tim Heuer's video about Silverlight & RIA Services, and he explained how to generate a DomainService.
My question is, should I use many domain services for each entity or merge them all along with all their queries into one big DomainService?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您通常会将域服务用于信息域(即相关实体)。
通常是:
使用 RIA 服务,将它们一次性全部导入到单个模型中并让 RIA 吐出当然更容易出一个(非常大的)域服务文件。
请确保尝试新的RIA Services SP1(现在处于测试版),因为它现在支持复杂类型和其他一些新内容。
You would typically use a Domain Service for a domain of information (i.e. related entities).
That will usually be either:
With RIA services it is certainly easier to import them all at once into a single model and have RIA spit out one (very large) domain service file.
Make sure you try out the new RIA Services SP1 (now in Beta) as it now supports complex types and some other new stuff.