gpt4 book ai didi

c# - 从通用列表中查找项目

转载 作者:太空狗 更新时间:2023-10-30 01:00:49 24 4
gpt4 key购买 nike

我在从通用列表中获取记录时遇到问题。我创建了一个通用函数,我想从中获取任何类型的类的记录。以下是示例代码:-

public void Test<T>(List<T> rEntity) where T : class
{
object id = 1;
var result = rEntity.Where(x => x.id == id);
}

请推荐。提前致谢。

最佳答案

使用这样的方法,编译器通常会问“什么是 T”?如果它只是一个类,它可以是任何东西,甚至是 Jon 提到的 StringBuilder 并且不能保证它具有属性“Id”。所以它甚至不会像现在这样编译。

为了让它工作,我们有两个选择:

A) 改变方法并让编译器知道期望的类型

B) 使用反射和运行时操作(最好尽可能避免这种情况,但在使用第 3 方库时可能会派上用场)。

A - 接口(interface)解决方案:

public interface IMyInterface
{
int Id {get; set;}
}

public void Test<T>(List<T> rEntity) where T : IMyInterface
{
object id = 1;
var result = rEntity.Where(x => x.id == id);
}

B - 反射解决方案:

public void Test<T>(List<T> rEntity)
{
var idProp = typeof(T).GetProperty("Id");
if(idProp != null)
{
object id = 1;
var result = rEntity.Where(x => idProp.GetValue(x).Equals(id));
}
}

关于c# - 从通用列表中查找项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43366996/

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