我有一个场景,我必须在 LINQ 中使用动态 where 条件.
I have a scenario where I have to use a dynamic where condition in LINQ.
我想要这样的东西:
public void test(bool flag)
{
from e in employee
where e.Field<string>("EmployeeName") == "Jhom"
If (flag == true)
{
e.Field<string>("EmployeeDepartment") == "IT"
}
select e.Field<string>("EmployeeID")
}
我知道我们不能在 Linq 查询中间使用If",但是对此有什么解决方案?
I know we can't use the 'If' in the middle of the Linq query but what is the solution for this?
请帮忙...
所以,如果 flag 是 false 你需要所有 Jhoms,如果 flag 是的,您只需要 IT 部门的 Jhoms
So, if flag is false you need all Jhoms, and if flag is true you need only the Jhoms in the IT department
这个条件
!flag || (e.Field<string>("EmployeeDepartment") == "IT"
满足该标准(如果标志为假,则总是为真,等等),因此查询将变为:
satisfies that criterion (it's always true if flag is false, etc..), so the query will become:
from e in employee
where e.Field<string>("EmployeeName") == "Jhom"
&& (!flag || (e.Field<string>("EmployeeDepartment") == "IT")
select e.Field<string>("EmployeeID")
还有,这个 e.Field 业务,闻起来像 软编码,可能会考虑一下.我猜
also, this e.Field<string>("EmployeeID") business, smells like softcoding, might take a look into that. I guess
from e in employee
where e.EmployeeName == "Jhom"
&& (!flag || (e.EmployeeDepartment == "IT")
select e.EmployeeID
会更紧凑,更不容易出现打字错误.
would be more compact and less prone to typing errors.
此答案适用于此特定场景.如果您有很多此类查询,请务必投资其他答案中提出的模式.
This answer works for this particular scenario. If you have lots of this kinds of queries, by all means investingate the patterns proposed in the other answers.
这篇关于LINQ 中的动态 where 条件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
LINQ to SQL:如何在不检索整个实体的情况下更新唯LINQ to SQL: how to update the only field without retrieving whole entity(LINQ to SQL:如何在不检索整个实体的情况下更新唯一字段)
string1 >= string2 未在 Linq to SQL 中实现,有什string1 gt;= string2 not implemented in Linq to SQL, any workaround?(string1 gt;= string2 未在 Linq to SQL 中实现,有什么解决方法吗?)
如何在条件下使用 RemoveAll 删除列表中的多个项目How to Remove multiple items in List using RemoveAll on condition?(如何在条件下使用 RemoveAll 删除列表中的多个项目?)
转换表达式树Convert Expression trees(转换表达式树)
当 IDENTITY_INSERT 设置为 OFF 时,无法为表“ClientCannot insert explicit value for identity column in table #39;ClientDetails#39; when IDENTITY_INSERT is set to OFF(当 IDENTITY_INSERT 设置为 OFF 时,
Linq 独特的 &最大限度Linq distinct amp; max(Linq 独特的 amp;最大限度)