gpt4 book ai didi

c# - 如何使用动态列执行 LINQ where 子句

转载 作者:行者123 更新时间:2023-11-30 22:55:06 24 4
gpt4 key购买 nike

我正在尝试使用 System.Linq.Dynamic.Core ( https://github.com/StefH/System.Linq.Dynamic.Core ) 来创建动态查询。

按照github页面上给出的示例,我尝试了以下操作

lstContacts = lstContacts.Where("@0 == true", "active");

但是我得到以下结果:'active 不是 bool 值的有效值

最佳答案

引用这个库:

using System.Linq.Dynamic;

然后这样查询:

string columnName = "active";

var lstContacts = lstContacts.Where(columnName + " == true");

这是一个工作示例:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Dynamic;

public class Program
{
public static void Main()
{
var lstContacts = new List<Contact>{
new Contact{Id = 1, Active = true, Name = "Chris"},
new Contact{Id = 2, Active = true, Name = "Scott"},
new Contact{Id = 3, Active = true, Name = "Mark"},
new Contact{Id = 4, Active = false, Name = "Alan"}};

string columnName = "Active";
List<Contact> results = lstContacts.Where(String.Format("{0} == true", columnName)).ToList();
foreach (var item in results)
{
Console.WriteLine(item.Id.ToString() + " - " + item.Name.ToString());
}
}
}

public class Contact
{
public int Id
{
get;
set;
}

public bool Active
{
get;
set;
}

public string Name
{
get;
set;
}
}

您可以试验一下 .net-fiddle-here

关于c# - 如何使用动态列执行 LINQ where 子句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55576502/

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