I\'m new in Linq and so I have these situation below.
Linq
Now below error during compilation, says Cannot implicitly convert type \'System.Linq.IQuery
Cannot implicitly convert type \'System.Linq.IQuery
It's because _db.Products isn't a query, it is a DbSet.
_db.Products
The second block works because you are casting it to IQueryable, and the last one works because it is an actual query.