gpt4 book ai didi

c# - 在 LINQ 中采用所有三元运算符?

转载 作者:太空狗 更新时间:2023-10-30 00:39:51 28 4
gpt4 key购买 nike

考虑这个函数:

public List<Employees> getEmployees(....... , int? takeMax = null)
{
// some code
...

var items = DB_Context.Employees.Where(%%%%% WHATEVER %%%%).Take(takeMax.HasValue && takeMax.Value > 0 ? takeMax.Value : ?????? ).ToList();
}

如果 takeMax 为 NULL,我如何获取所有项目?

Take() 采用 int ,我不想写类似

的东西
int total = DB_Context.Employees.Count();
var items = DB_Context.Employees.Where(%%%%% WHATEVER %%%%).Take(takeMax.HasValue && takeMax.Value > 0 ? takeMax.Value : total ).ToList();

还有其他选择吗?

最佳答案

你只能在这种情况下应用:

var itemsQuery = DB_Context.Employees.Where(%%%%% WHATEVER %%%%);
if (takeMax > 0)
{
itemsQuery = itemsQuery.Take(takeMax);
}

var items = itemsQuery.ToList();

关于c# - 在 LINQ 中采用所有三元运算符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33009831/

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