Case insensitive QueryExpression

前端 未结 2 1451
野性不改
野性不改 2020-12-21 10:32

Is it possible to build a query with a ConditionExpression which is not case sensitive ?

ConditionExpression condition = new ConditionExpression() 
{ 
  Attr         


        
2条回答
  •  旧巷少年郎
    2020-12-21 11:22

    I believe that this is a factor of the database collation that was chosen during install of CRM rather than a feature of QueryExpression.

    The default during a clean install is Latin1_General_CI_AS. You can check yours by executing the following sql statement:

    SELECT DATABASEPROPERTYEX('OrganisationName_MSCRM', 'Collation')
    

提交回复
热议问题