Hi ,
I have some methods in my BLL that fetch some records from database and pass it to UI for binding to Data Controls such as Gridview or ...
I could choose my return data type of the methods whether IQueryable<t>
or Ilist<t>
.
My question is which one would be better for me and why ?
Actually i don't know the difference between these two type and i don't know which one is best for which situations ?
Thank you