我写了一个“微课”来进行一些快速的数据操作。
这是项目:
class AEmp {
public AEmp() {
Parts = new AParts();
}
public string Badge { get; set; }
public AParts Parts { get; set; }
public int Days { get; set; }
}
这是列表:
class AEmps {
private List<AEmp> list;
public AEmps() {
list = new List<AEmp>();
}
public AEmp this[string badge] {
get { return list.SingleOrDefault(e => e.Badge == badge); }
}
public void Add(AEmp item) {
if (!Contains(item.Badge)) {
list.Add(item);
}
}
public bool Contains(string badge) {
return (list.Where(o => o.Badge == badge) != null);
}
public int Count { get { return list.Count; } }
public AEmp Owner(string serialNo, DateTime startDay, DateTime nextDay) {
return (list.SingleOrDefault(e => e.Parts.Contains(serialNo, nextDay)));
}
}
我面临的问题是当我向列表中添加新项目时。如果它已经存在,我不想添加它,所以我用我的Contains
方法检查它。
该列表为空(Count = 0),因此list.Where(o => o.Badge == badge) != null)
应返回FALSE。
对?
我在这里做错了什么?