日期:2014-05-20  浏览次数:20641 次

LIKE 在 linq 里怎么用
LIKE 在 linq 里怎么用

------解决方案--------------------
[code=C#][/code]var q = from c in db.Customers
where SqlMethods.Like(c.CustomerID, "C%")
select c;