使用LINQ按字母搜索

时间:2010-05-13 06:07:23

标签: c# linq

您使用Linq& C#和我想在Sql中过滤我的数据作为这种语法 sql中的语法是 我有一个名为Customer的表名称字段 '从客户中选择名称,如'C%'' 你可以帮助在Linq中解决这个代码

1 个答案:

答案 0 :(得分:1)

同时检查

 StartsWith
   EndsWith

另一个替代

 var query = from c in ctx.Customers
                where SqlMethods.Like(c.City, "L_n%")
                select c;

同样的问题:Like query ing LINQ to Object