linq like
场景:LIKE 在 linq 里如何用
LIKE 在 linq 里怎么用
LIKE 在 linq 里怎么用
------解决方案--------------------
[code=C#][/code]var q = from c in db.Customers
where SqlMethods.Like(c.CustomerID, "C%")
select c;
LIKE 在 linq 里怎么用
LIKE 在 linq 里怎么用
------解决方案--------------------
[code=C#][/code]var q = from c in db.Customers
where SqlMethods.Like(c.CustomerID, "C%")
select c;