包含某字符串的模糊查询
pageInfo.Wheres.Add(n => n.Title.Contains(Ttile));
以某字符串开头的模糊查询
pageInfo.Wheres.Add(n => n.CateCode.StartsWith(CateCode));
以某字符串结尾的模糊查询
pageInfo.Wheres.Add(n => n.CateCode.EndsWith(CateCode));
包含某字符串的模糊查询
pageInfo.Wheres.Add(n => n.Title.Contains(Ttile));
以某字符串开头的模糊查询
pageInfo.Wheres.Add(n => n.CateCode.StartsWith(CateCode));
以某字符串结尾的模糊查询
pageInfo.Wheres.Add(n => n.CateCode.EndsWith(CateCode));
转载于:https://www.cnblogs.com/kwm672225801/p/6692005.html