我有一个从数据库中获取记录的查询,我需要在参数中传递 id 来调用这个函数,比如 Myfunction(1, 2, 3)
我想得到与这个ID匹配的结果,
喜欢
public List<Items> GetItems(int[] ids)
{
var a = from Items in db.item
where items.id == ids[]
select new Items
{
}
return a.ToList();
}
where 子句存在混淆(如何获取有关提供的记录)
我用循环ID尝试了这个,但没有成功
提前致谢