您好如何在substring
和EF
语句中的where
查询中使用select
吗?
我的查询不计算来自数据库的任何记录来执行
但在数据库中有13359条记录
我的查询在
之下string subautoassettype, subautocat, subautocat1 ;
string autoidstring;
autocat = cmbcategory.Text;
autocat1 = cmbcategory1.Text;
autocat2 = cmbcategory2.Text;
subautoassettype = autocat.Substring(0, 3);
subautocat = autocat1.Substring(0, 3);
subautocat1 = autocat2.Substring(0, 3);
autoidstring = subautoassettype + subautocat + subautocat1 + "-";
var varmaxidcheck = cnx.item_master.Where(c => c.Item_ID.Substring(0, 9) == autoidstring)
.Select(gd => new { gd.Item_ID }).ToList();
if (varmaxidcheck.Count > 0)
{
foreach (var it11 in varmaxidcheck)
{
string kij = it11.Item_ID;
}
}
预期示例输出:
cnx.item_master(where c=> c.FixBooChe-0013346 == FixBooChe-).Select(fg=>fg.Item_ID);
请帮我解决这个问题
此外,我还包含SQL查询
select max(substring(Item_ID,11,6)) from item_master where substring(Item_ID,1,9) = 'FixEleCre';
答案 0 :(得分:0)
使用Contains
代替==
:
var varmaxidcheck = cnx.item_master.Where(c => c.Item_ID.Substring(0, 9)
.Contains(autoidstring))
.Select(gd => new { gd.Item_ID })
.ToList();
因为您Where
子句中可能没有完全匹配的字符串。