在 WPF/WCF 应用程序中使用 CSLA 的经验
是否有人在具有 WPF 前端和实体 WCF 线的应用程序中使用过 CSLA?
如果是这样,您使用哪个“实体框架”? (nHibernate、Linq 等...) 遇到了什么困难? 它对你有什么帮助?
我关心的是为应用程序实现此功能,不知道数据绑定、UI/实体验证或延迟加载将如何反应。
我们还担心 WCF 上的消息大小,尤其是实体的深度。
有压力测试吗? 我试图弄清楚它真正设计用于多大的应用程序/实体。
如果您能帮助回答任何这些问题,我们将不胜感激。
Has anyone used CSLA in an application that has a WPF front end and a WCF wire for entities?
If so, which "entity framework" did you use? (nHibernate, Linq, etc...)
What were the hang-ups? What did it help you with?
I am concerned with implementing this for an application, not knowing how data-binding, validation with UI/entities, or deffered loading will react.
We are also worried about the message sizes coming over WCF, especially with the depth of our entities.
Are there any stress tests out there? I am trying to figure out what size application/entities this is really designed for.
If you can help answer any of these questions it would be greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我对 CSLA 不太了解,但我已经使用 WPF + LINQ + WCF 构建了应用程序,这种组合非常适合与 WPF 的单向数据绑定,但我们需要一个中间对象类(WPF 的 ViewModel)来获取 TwoWay在职的。 这个类可能是 WCF 类的精确副本(在大多数情况下),但它会实现 INotiftPropertyChanged。
I don't know much about CSLA, but I have built application with WPF + LINQ + WCF, This combination works well for one way databinding to WPF, but we need to have an intermediate object class(ViewModel for WPF) to get the TwoWay working. This classes might be an exact copy of WCF classes(in most of the cases) but it would have INotiftPropertyChanged implemented.