Remove object from generic list by id(按 id 从通用列表中删除对象)
问题描述
我有一个这样的域类:
public class DomainClass
{
public virtual string name{get;set;}
public virtual IList<Note> Notes{get;set;}
}
我将如何从 IList<Note>
中删除一个项目?如果它是一个 List,我将能够做到这一点,但它必须是一个 IList
,因为我使用 Nhibernate 作为我的持久层.
How would I go about removing an item from the IList<Note>
? I would be able to do it if it was a List but it has to be an IList
as I am using Nhibernate for my persistance layer.
理想情况下,我希望在我的域类中使用这样的方法:
Ideally I wanted a method like this in my domain class:
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
.有没有更优雅的方法来解决这个问题?
But I can't cast the IList
as a List
. Is there a more elegant way round this?
推荐答案
您可以过滤掉您不想要的项目并创建一个仅包含您想要的项目的新列表:
You could filter out the items you don't want and create a new list with only the items you do want:
public virtual void RemoveNote(int id)
{
//remove the note from the list here
Notes = Notes.Where(note => note.Id != id).ToList();
}
这篇关于按 id 从通用列表中删除对象的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:按 id 从通用列表中删除对象


- C# 中多线程网络服务器的模式 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- 输入按键事件处理程序 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04