在linq to entity中无法使用Contains,IndexOf方法。
那如何实现字符串的like检索呢。
请指教!
from user in Table_USERwhere user.USER_NAME.IndexOf(userName) > -1select user;
where user.USER_NAME.Contains(userName) 也不行
userName是传入的参数。
var query = from c in Table_USER
where SqlMethods.Like(c.USER_NAME, "aaa%")
select c;
Table_USER.Where(p=>p.USER_Name=="MyName").Count()>0
indexof
可以使用Contains啊,我试过