我试图在 LINQ 中的 LET 中包含一个 IF,但我无法让它工作,它似乎适用于三元运算符,但这是 TRUE 或 FALSE,我需要有两个以上的选项。
我认为这很好地解释了它
基本上我有一个选择,它使用数据库中的连接来选择项目。然后我得到每条记录的状态,但我必须根据 products.type 的类型在单独的表上进行连接
var tst = from p in products join i in info on p.id equals i.pid
// if p.type = "home" then ...
let status = from s in homestatus
select new { status = s.status }
// if p.type ="offshore" then
let status = from s in offshorestatus
select new { status = s.status }
// if p.type ="internal" then
let status = from s in internalestatus
select new { status = s.status }
select new {
name = p.name,
status = status.StatusText
}
任何人都知道如何做一个标准的 IF,所以我可以选择我希望执行的状态(让)。
提前致谢