gpt4 book ai didi

c# - 如何从CRM外部的应用程序中的SQL Server获取选项集值

转载 作者:行者123 更新时间:2023-12-04 13:28:13 25 4
gpt4 key购买 nike

如何从SQL Server获取实体的选项设置值。我已经开发了一个Windows应用程序,在其中我通过使用拟人化从crm获取选项集。但是现在我的要求是使用sql服务器凭据而不是crm凭据从sql服务器获取值。

最佳答案

select
e.Name as EntityName,
e.ObjectTypeCode,
s.AttributeName,
s.AttributeValue,
s.Value,
s.DisplayOrder
from
StringMap s
inner join EntityLogicalView e on
s.ObjectTypeCode = e.ObjectTypeCode
where
e.Name = 'new_entityname'
and s.AttributeName = 'new_optionsetname'

关于c# - 如何从CRM外部的应用程序中的SQL Server获取选项集值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12614163/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com