Is it possible to return IQueryable from a repository?
I have a WebAPI application. I’m using the Repository pattern, where the GetAll method returns an IQueryable collection to filter the data on the database side. Is it correct?
I have a WebAPI application. I’m using the Repository pattern, where the GetAll method returns an IQueryable collection to filter the data on the database side. Is it correct?