本文介绍了字符串1> =字符串2中没有实施的LINQ到SQL,任何workarround?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

任何人都知道如何做到这一点?

anyones knows how to do this?

编辑:我想做> =。我纠正标题。

I am trying to do >=. I correct the Title.

推荐答案

字符串1 =>字符串2不支持在C#LinqToSql与否。 String类不覆盖=>操作者在所有。它仅覆盖!=和==操作符。您可以通过试图编译下面的方法进行验证

string1 => string2 is not supported in C# LinqToSql or not. The String class does not override the => operator at all. It only overrides the != and == operators. You can verify this by trying to compile the following method

public static void Example() {
  int val = "foo" => "bar";
}

如果你想比较字符串在LinqToSql,你应该能够使用静态的方法。

If you want to compare to Strings in LinqToSql you should be able to use the static String.Compare(string,string) method.

这篇关于字符串1> =字符串2中没有实施的LINQ到SQL,任何workarround?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-03 03:43