MvcContrib Grid - AutoGenerateColumns 可以用于复杂对象吗?
我喜欢 MvcContrib Grid 的 AutoGenerateColumns 功能,但它似乎只适用于简单的对象。是否可以让它遍历复杂对象的属性?或者是否有必要使用column.For()
手动执行此操作?
一个示例是具有 Address 对象作为其属性之一的 User 对象。
I like MvcContrib Grid's AutoGenerateColumns feature, however it only seems to work with simple objects. Is it possible to get it to traverse the properties of a complex object? Or is it neccesary to do this manually with column.For()
?
An example would be a User object that has an Address object as one of its properties.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有。网格仅循环遍历单层属性。 MVCContrib Grid 不会递归地深入到您的对象。
如果您查看源< /a>:
Nope. The grid only loops through a single layer of properties. MVCContrib Grid won't recursively drill down into your object.
If you look at the the source: