Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在编写一个类的单元测试。该类的一些方法将IQueryable对象作为参数,我想模拟传递给这些方法的对象。是否有任何内置到 C# 中的集合来实现IQueryable?如果没有,我该如何模拟这些对象?
IQueryable
只需使用IEnumerable<T>.AsQueryable(). IEnumerable<T>使用你喜欢的任何实现者。
IEnumerable<T>.AsQueryable()
IEnumerable<T>