首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > .NET >

LIKE 在 linq 里如何用

2012-02-10 
LIKE 在 linq 里怎么用LIKE 在 linq 里怎么用[解决办法][codeC#][/code]var q from c in db.Customersw

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

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

热点排行