Hi all,
I'm writing a repositoy now, returning IQueryable results. Does adding filters affect the efficiency? campring to write the clause in the linq.
Such as
IQueryable result = repository.GetAllBooks().Where(book => book.author =="Russell");
Thanks!