C# 中的字符串与 LINQ 表达式比较
String compare in C# with LINQ Expression
我正在尝试用 c# 中的字符串比较解决问题,但不幸的是,它不起作用
Expression<Func<Physician, bool>> PredicateLicense = x => x.LicenseNumber == LicenseNumber;
这就是我所做的
Expression<Func<Physician, bool>> PredicateLicense = string.Compare(x => x.LicenseNumber,LicenseNumber,true);
但是上面一行抛出异常。我该怎么做?
我想你的意思是代码没有编译也没有抛出异常?
您没有说明为什么要使用 string.Compare
,但我认为您在比较许可证号时希望忽略大小写。
如果是这种情况,我建议您:
Expression<Func<Physician, bool>> predicateLicense =
p => p.LicenseNumber.Equals(licenseNumber, StringComparison.OrdinalIgnoreCase);
关于 Compare
方法,请注意它 return 是 int
而不是 bool
所以你可以这样做:
Expression<Func<Physician, int>> predicateLicense =
p => string.Compare(p.LicenseNumber, licenseNumber, true);
有关 Compare 方法及其 return 值含义的更多信息,您可以阅读 here。
我正在尝试用 c# 中的字符串比较解决问题,但不幸的是,它不起作用
Expression<Func<Physician, bool>> PredicateLicense = x => x.LicenseNumber == LicenseNumber;
这就是我所做的
Expression<Func<Physician, bool>> PredicateLicense = string.Compare(x => x.LicenseNumber,LicenseNumber,true);
但是上面一行抛出异常。我该怎么做?
我想你的意思是代码没有编译也没有抛出异常?
您没有说明为什么要使用 string.Compare
,但我认为您在比较许可证号时希望忽略大小写。
如果是这种情况,我建议您:
Expression<Func<Physician, bool>> predicateLicense =
p => p.LicenseNumber.Equals(licenseNumber, StringComparison.OrdinalIgnoreCase);
关于 Compare
方法,请注意它 return 是 int
而不是 bool
所以你可以这样做:
Expression<Func<Physician, int>> predicateLicense =
p => string.Compare(p.LicenseNumber, licenseNumber, true);
有关 Compare 方法及其 return 值含义的更多信息,您可以阅读 here。