Asp.net 动态数据 - 列表页面上未呈现字段
我已经针对实体框架模型创建了一个动态数据站点
我有 2 个字段,它们在数据库中是 nvarchar(max) 并且它们不会在列表视图上呈现
这可能是一个合理的默认值
但是我如何覆盖它?
已尝试向我的 MetaData 类添加各种属性,例如
[ScaffoldColumn(true)]
[UIHint("RuleData")]
但对此没有
任何想法有什么想法吗?
I have created a Dynamic Data site against an Entity Framework Model
I have 2 fields which are nvarchar(max) in the DB and they do not get rendered on the list view
This is probably a sensible default
But how do I override this?
Have tried adding various attributes to my MetaData class e.g
[ScaffoldColumn(true)]
[UIHint("RuleData")]
But no joy with that
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看来这不能在我使用的 DD 版本中被覆盖
必须将数据类型从 nvarchar(max) 更改为 nvarchar(4000),这可能就足够了
It seems this can't be overidden in the version of DD I am using
Had to change the data type from nvarchar(max) to nvarchar(4000), which will probably be sufficient