分类

链接

2011 年 12 月
 1234
567891011
12131415161718
19202122232425
262728293031  

近期文章

热门标签

新人福利,免费薅羊毛

现在位置:    首页 > .NET > 正文
共享办公室出租
linq里LIKE的几种用法
.NET 暂无评论 阅读(3,372)

方法1:Using String.StartsWith or String.Endswith

 

  1. var q = from c in db.Customers
  2.   where SqlMethods.Like(c.CustomerID, "C%")
  3.   select c;

方法2.Using SqlMethods.Like method

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

方法3:

var q =from c in db.Customers where c.CustomerID.IndexOf("C")>-1select c;

 

方法4:当然是用CONTAINS了,不过这个只能实现  LIKE '%keyword%'这种

 

方法5:等你来完成!哈哈

 

============ 欢迎各位老板打赏~ ===========

本文版权归Bruce's Blog所有,转载引用请完整注明以下信息:
本文作者:Bruce
本文地址:linq里LIKE的几种用法 | Bruce's Blog

发表评论

留言无头像?