MVC3 LDAP 查找
我有一个 MVC3 项目,要求使用 LDAP 填充我的模型类之一上的多个人员属性。我之前在 .Net 3.5 中做过这个,但不确定如何在 MVC3 中实现它。我是否会采取相同的方法,或者 MVC3 中是否有 HTML 帮助程序或其他一些我可以/应该使用的机制?
I have an MVC3 project with a requirement to use LDAP to fill in several personnel properties on one of my Model classes. I have done this before in .Net 3.5 but wasn't sure how to approach it in MVC3. Would I take the same approach or is there an HTML helper or some other mechanism in MVC3 that I could/should use?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
继续做你一直在做的事情。构建 ViewModel 时(最好在存储库层中),您可以使用 LDAP 作为必要属性的数据源。
您不想在视图中执行此操作,因为视图不应具有除表示逻辑之外的任何逻辑。
Keep doing what you have been doing. When building your ViewModel (preferably in a repository layer), you can use LDAP as your data source for the necessary properties.
You do not want to do this in a view, as the view should not have any logic other than presentation logic.