1.执行中发生报错:“Two strings to be compared have different collation” , 在 字符串(==) 比较过程 抛的异常
后来发现是 参数传入是SqlString 类型 ,直接和 字符串 比较 (==) , 但是 部署 db的 编码格式 (Collation):Chinese_PRC_CI_AS ,而 数据源的 Collation:SQL_Latin1_General_CP1_CI_AS
解决方法 :函数的参数p1 类型是 SqlString, 必须使用 p1.Value 转换成 string 类型 ,在进行字符串比较(==) 就没这个问题 ,所以切记 要从 SqlString 转换成 string 类型
标签:总结,CI,string,Collation,SqlString,Sql,字符串,CLR From: https://www.cnblogs.com/shell1/p/17771391.html