从插件代码中读取CRM 2013系统设置



我想知道是否有可能读取(不写!)Microsoft Dynamics CRM 2013中的插件的系统设置。可以轻松地为用户设置完成,但我可以't也可以在系统设置中找到任何方法。我需要阅读"附件的阻止文件扩展"设置。

您可以通过实体"组织"加载设置,以下代码将读取折扣计算方法属性的值:

 var query = new QueryExpression("organization");
 query.ColumnSet.AddColumn("discountcalculationmethod");
 var org = this.orgservice.RetrieveMultiple(query).Entities.First();

 Assert.IsNotNull(org["discountcalculationmethod"]);

相关内容

  • 没有找到相关文章

最新更新