First of all, I’ll tell the difference between the two and why I choose to return IQueryable<T> over IEnumerable<T> in my repository. IQueryable<T> allows you to operate and build queries that can be sent to a remote provider. For eg. Entity…
Read more ›
