There’s this … MSDN page, IQueryable(Of T) Interface. Can you do a better job explaining why we need a marker interface which doesn’t add any methods over IEnumerable?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It extends
IEnumerable,IQueryableandIEnumerable<T>. It may not have methods of its own, but it aggregates these other three interfaces as one, so you don’t have to deal with them separately.