gpt4 book ai didi

c# - LINQ:如何向 LINQ 查询添加多个变量?

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

我有一个名为 List 的 Controller 操作,它采用以下参数

int Filer, int Field, int Operator, string QueryValue

public enum Filter
{
ActiveEmployee,
OnHoldEmployee,
InactiveEmployee
}
public enum Field
{
Name,
ABRAID,
JobTitle,
LocationCode,
Department
}
public enum Operator
{
Contains,
StartWith,
EndWith,
EqualTo
}

可能的情况:

Select employee where Name Equals "Value"

Select employee where Name EndWith with "Value"

Select employee where Name StartWith with "Value"

Select employee where JobTitle Contains "Value"

Select employee where Department Equals "Value"

我正在使用 LINQ 查询数据库

Employees = from p in DB.Employees
where p.AWCID.Contains(queryvalue)
select p;

但这意味着我必须使用嵌套的 switch case 来涵盖所有情况。覆盖 3 个变量的代码超过 180 行,

我不是很了解支持多值的 LINQ 语法。

有什么想法吗?谢谢。

最佳答案

假设查询将只有一种类型的查询(包含、startswith 等),我会尝试这样的事情:

public IQueryable<Employee> GetEmployees(queryType, value)
{
var Employees = from p in DB.Employees
select p;

// could use a switch statement here as well
if (queryType == "contains")
return Employees.where(e => e.contains(value));
else if...
}

您还可以将查询类型设为枚举。

关于c# - LINQ:如何向 LINQ 查询添加多个变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6629260/

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