.net - Explain in small words why IQueryable<T> is needed -
Is there a better job you can tell why we need the marker interface which does not add any method to IEnumerable can?
this will be IEnumerable
, IQueryable
and IEnumerable & lt; T & gt;
is expanded. It may be that it does not have its own methods, but it adds these three interfaces as one, so you do not have to deal them separately.
Comments
Post a Comment