Linq IQueryable <model>多个过滤器值

问题描述

表 Device_Models

Model_Type 字段
Iphone x 64GB
Iphone x 32GB
Iphone 7 32GB
Iphone 8 128GB

我正在使用以下查询来过滤文本框中的模型类型,这里的问题是,当我在搜索框中输入“ iphone 64”时,它不返回任何值。在sql中,以下“%iphone%64%”将返回正确的数据适配。如何在Linq查询中实现“%iphone%64%”?

var query = (from M in db.Device_Models
                         join C in db.Device_Categories on M.Device_Category_ID equals C.Category_ID
                         join AC in db.AllowedCategories on C.Category_ID equals AC.allowedcategoryid
                         Where M.Model_Type.Contains(**searchcriteria**)
                         && M.IsEnabled == true 
                         && (from o in db.AllowedCategories select o.allowedcategoryid).Contains(C.Category_ID)
                         orderby M.Model_Type
                         select new model
                         {
                             Model_ID = M.Model_ID,Manufacturer_ID_FK = (int)M.Manufacturer_ID_FK,Device_Category_ID = (int)M.Device_Category_ID,Model_Type = M.Model_Type,ImageName = M.ImageName,IsEnabled = (bool)M.IsEnabled,}).Take(40);

谢谢

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)