gpt4 book ai didi

c# - 可以创建 key 未知的通用搜索方法

转载 作者:太空狗 更新时间:2023-10-29 21:26:40 24 4
gpt4 key购买 nike

是否可以创建一个 key 未知的通用搜索方法?例如,列表的键将传递给参数,它执行类似的搜索并返回过滤后的列表。

代码应该是这样的:

public List<T> LikeSearch<T>(List<T> AllData,T key, string searchString)
{
List<T> _list = new List<T>();
//Perform the search on AllData based on searchString passed on the key
//given
return _list;
}

用途如下:

示例 1

List<Users> _users = LikeSearch<Users>(AllUsers,'Name','sam');

其中 AllUsers 是 100 个 users 的列表。

示例 2

List<Customers> _cust = LikeSearch<Customers>(AllCustomers,'City','London');

其中 AllCustomers 是 100 个 Customers 的列表。

请建议

最佳答案

假设 key 总是引用由任何类型 T 实现的公共(public)属性,您可以执行以下操作:

public static List<T> LikeSearch<T>(this List<T> data, string key, string searchString)
{
var property = typeof(T).GetProperty(key, BindingFlags.Public | BindingFlags.GetProperty | BindingFlags.Instance);

if (property == null)
throw new ArgumentException($"'{typeof(T).Name}' does not implement a public get property named '{key}'.");

//Equals
return data.Where(d => property.GetValue(d).Equals(searchString)).ToList();

//Contains:
return data.Where(d => ((string)property.GetValue(d)).Contains(searchString)).ToList();
}

关于c# - 可以创建 key 未知的通用搜索方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39120429/

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