MS Dynamics CRM 4.0 中的字段长度元数据

发布于 2024-07-29 10:31:55 字数 154 浏览 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

忆沫 2024-08-05 10:31:55

如果您知道该属性是字符串或 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.

梦与时光遇 2024-08-05 10:31:55

感谢@Matt,很有魅力。 我使用它如下:

StringAttributeMetadata stringAttributeMetadata = (StringAttributeMetadata)attributeMetadata;
recordToBeUpdated[recordFieldLogicalName] = recordFieldValue.Length < stringAttributeMetadata.MaxLength.Value ?  recordFieldValue : recordFieldValue.Substring(0,stringAttributeMetadata.MaxLength.Value - 1);

Thanx @Matt worked like a charm. I used it as below:

StringAttributeMetadata stringAttributeMetadata = (StringAttributeMetadata)attributeMetadata;
recordToBeUpdated[recordFieldLogicalName] = recordFieldValue.Length < stringAttributeMetadata.MaxLength.Value ?  recordFieldValue : recordFieldValue.Substring(0,stringAttributeMetadata.MaxLength.Value - 1);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文