实体框架和不区分大小写的字符串搜索

时间:2011-09-14 11:02:45

标签: linq entity-framework

我有一个Entity Framework实体,其字符串属性名为Description 搜索Description包含字符串的所有实体非常简单:

var res = from u ctx.Users where u.Description.contains(str) select u;

但是假设我想支持不区分大小写的搜索?

1 个答案:

答案 0 :(得分:11)

如果你正在使用Linq to enties搜索是由sql server完成的,那么搜索是否区分大小写取决于服务器设置。