LIKE 在 linq 里怎么用
LIKE 在 linq 里怎么用
[解决办法]
[code=C#][/code]var q = from c in db.Customers
where SqlMethods.Like(c.CustomerID, "C%")
select c;
发布时间: 2012-02-10 21:27:41 作者: rapoo
LIKE 在 linq 里怎么用
LIKE 在 linq 里怎么用
[解决办法]
[code=C#][/code]var q = from c in db.Customers
where SqlMethods.Like(c.CustomerID, "C%")
select c;