嗨,我正在尝试将 1 个列表附加到另一个列表。我以前使用AddRange()
过它,但它似乎在这里不起作用......这是代码:
IList<E> resultCollection = ((IRepository<E, C>)this).SelectAll(columnName, maxId - startId + 1, startId);
IList<E> resultCollection2 = ((IRepository<E, C>)this).SelectAll(columnName, endId - minId + 1, minId);
resultCollection.ToList().AddRange(resultCollection2);
我进行了调试以检查结果,这就是我得到的结果:resultCollection
计数为 4resultCollection2
计数为 6,添加范围后,resultCollection
计数仍然只有 4,而应该计数为 10。
谁能看到我做错了什么?任何帮助表示赞赏。
谢谢,
马特