您使用Linq& C#和我想在Sql中过滤我的数据作为这种语法 sql中的语法是 我有一个名为Customer的表名称字段 '从客户中选择名称,如'C%'' 你可以帮助在Linq中解决这个代码
答案 0 :(得分:1)
同时检查
StartsWith
EndsWith
另一个替代
var query = from c in ctx.Customers
where SqlMethods.Like(c.City, "L_n%")
select c;