insensitive string matching in LINQ Where

This question already has an answer here:

  • Case insensitive 'Contains(string)' 22 answers

  • foods.Where(x => x.StartsWith("S", StringComparison.OrdinalIgnoreCase));


    如果您使用的是字符串对象的集合,则还可以使用StartsWith;

    food.StartsWith("s", StringComparison.OrdinalIgnoreCase);
    
    链接地址: http://www.djcxy.com/p/13094.html

    上一篇: 过滤大小写不敏感的IQueryable。

    下一篇: LINQ中不敏感的字符串匹配在哪里