gpt4 book ai didi

c# - 按 id 从通用列表中删除对象

转载 作者:可可西里 更新时间:2023-11-01 08:00:12 27 4
gpt4 key购买 nike

我有一个这样的域类:

public class DomainClass
{
public virtual string name{get;set;}
public virtual IList<Note> Notes{get;set;}
}

我将如何从 IList<Note> 中删除一个项目? ?如果它是一个列表,我就可以做到,但它必须是 IList因为我将 Nhibernate 用于我的持久层。

理想情况下,我希望在我的域类中使用这样的方法:

public virtual void RemoveNote(int id)
{
//remove the note from the list here

List<Note> notes = (List<Note>)Notes

notes.RemoveAll(delegate (Note note)
{
return (note.Id = id)
});
}

但我无法转换 IList作为List .有没有更优雅的方法来解决这个问题?

最佳答案

您可以过滤掉不需要的项目并创建一个仅包含您想要的项目的新列表:

public virtual void RemoveNote(int id)
{
//remove the note from the list here

Notes = Notes.Where(note => note.Id != id).ToList();
}

关于c# - 按 id 从通用列表中删除对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6478175/

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