Próbuję stworzyć makiety dla mojego IRepository
interfejsu:Lista <T> wdrożyć IQueryable <T>
public interface IRepository<T> : ICollection<T>, IQueryable<T>
{
}
Z tej realizacji:
public class RepositoryFake<T> : List<T>, IRepository<T>
{
public Expression Expression
{
get
{
return this.AsQueryable().Expression;
}
}
public Type ElementType
{
get
{
return this.AsQueryable().ElementType;
}
}
public IQueryProvider Provider
{
get
{
return this.AsQueryable().Provider;
}
}
}
Ale kiedy go używać, jestem coraz StackOverflow
wyjątek. Jak poprawnie zaimplementować ten interfejs, aby móc korzystać z repozytorium tylko z wersji List
?
Użycie jest bardzo proste
[Test]
public void Test()
{
RepositoryFake<User> users = new RepositoryFake<User>();
users.Add(new User());
List<User> list = (from user in users
where user.Id == "5"
select user).ToList();
Assert.That(list, Is.Empty);
}
Oto zrzut ekranu z wyjątkiem:
"Ale kiedy go użyję" - pokaż nam kod? Pokaż nam ślad stosu? – cdhowie
Co próbujesz zrobić? Domyślam się, że masz nadzieję na magię. Zachowanie jest całkowicie oczekiwane. – leppie