gpt4 book ai didi

c# - 使用 IN 运算符的子查询列出 Entity Framework 6

转载 作者:太空宇宙 更新时间:2023-11-03 15:00:53 25 4
gpt4 key购买 nike

我想使用 IN 运算符在 Entity Framework 中执行子查询,然后使用 as 列表发送到 View 。

这是我的SQL代码

select * from famProd where id in (Select famID from appNfam where appID = 1)

这是我的 Controller

public ActionResult ProductFamily(int id)
{
Session["appID"] = id;

var famProds = from prodFam in famProd where prodFam.id == (from piv in appNfam where piv.appID == id);



return View();

}

希望你能帮助我

最佳答案

尝试这样的事情:-

var appIds   = from piv in appNfam where piv.appID  == id;
var famProds = from p in DbContext.famProd
where appIds.Contains(p.id)
select p;

关于c# - 使用 IN 运算符的子查询列出 Entity Framework 6,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46228229/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com