sql – 如何加入dbo.LocalizedLabelView以获取Dynamics CRM中的表单标签?

前端之家收集整理的这篇文章主要介绍了sql – 如何加入dbo.LocalizedLabelView以获取Dynamics CRM中的表单标签?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在Dynamics CRM中,我经常从业务用户那里获得创建报告的要求.业务用户了解并谈论实体显示名称属性标签.要编写查询,我需要将它们映射到实体名称属性名称.我想用一个查询来查看.

我将如何加入dbo.LocalizedLabelView视图以获取以下查询中的AttributeLabel列?我无法弄清楚ObjectId应该引用什么. (如果你能告诉我你是如何找到答案我会特别感激的!)

select
    [EntityName]           = entityNames.Name,[EntityDisplayName]    = entityDisplayNames.Label,[AttributeName]        = attributeNames.PhysicalName,[AttributeDisplayName] = attributeDisplayNames.Label
    --[AttributeLabel]     = attributeLabels.Label
from 
    dbo.EntityView entityNames

    inner join dbo.LocalizedLabelView entityDisplayNames
        on entityDisplayNames.ObjectId = entityNames.EntityId
        and entityDisplayNames.ObjectColumnName = 'LocalizedName'

    left outer join dbo.AttributeView attributeNames
        on attributeNames.EntityID = entityNames.EntityID

    inner join dbo.LocalizedLabelView attributeDisplayNames
        on attributeDisplayNames.ObjectId = attributeNames.AttributeID
        and attributeDisplayNames.ObjectColumnName = 'DisplayName'
        and attributeDisplayNames.LanguageID = entityDisplayNames.LanguageID

    --inner join dbo.LocalizedLabelView attributeLabels
    --  on attributeLabels.ObjectId = ?????
    --  and attributeLabels.LanguageID = entityDisplayNames.LanguageID
where
    entityDisplayNames.LanguageID = 1033
order by
    entityDisplayNames.Label,attributeDisplayNames.Label

解决方法

ObjectId是对CRM数据库中事物的内部ID的引用.这个东西可以是属性,实体,标签等等.

由于您需要属性标签,因此请在此处使用该属性的id作为ObjectId.我想你希望你的连接条件看起来像这样:

inner join dbo.LocalizedLabelView attributeLabels
    on attributeLabels.ObjectId = attributeNames.AttributeID
    and attributeLabels.LanguageID = entityDisplayNames.LanguageID
    and attributeLabels.ObjectColumnName = 'DisplayName'

如果需要属性的描述,可以将ObjectColumnName更改为“Description”.

原文链接:https://www.f2er.com/mssql/78140.html

猜你在找的MsSQL相关文章