MS Dynamics CRM 4.0 中的字段长度元数据
我正在尝试查找有关 MS Dynamics CRM 4.0 中字段长度的元数据 - 有谁知道是否/在哪里可以从元数据服务获得此信息? 我尝试查看 AttributeMetadata 类,但找不到任何内容。 然而,字段长度确实显示在 MS 的元数据浏览器中,因此它必须能够以某种方式访问。
I'm trying to find metadata about the length of fields in MS Dynamics CRM 4.0 - does anyone know if/where this information is available from the metadata services? I tried looking on the AttributeMetadata class, but can't find anything there. Yet, the field length does show up in MS's metadata browser, so it must be accessible somehow.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您知道该属性是字符串或 ntext 属性,则可以将 AttributeMetadata 对象转换为 StringAttributeMetadata 对象,并且该对象将具有这些字段的最大长度。
If you know the attribute is a string or ntext attribute, you can cast the AttributeMetadata object over to a StringAttributeMetadata object, and that will have the maximum length of those fields.
感谢@Matt,很有魅力。 我使用它如下:
Thanx @Matt worked like a charm. I used it as below: