for example, I have a table TableA, with fields Field1, Field2 and Field3. My LINQ to SQL code is:
from c in a.TableAs select c
then I bind this query to a GridView named gvSample which only uses Field1 and Field2 of TableA.
then, when the LINQ to SQL query is enumerated, does the data of Field3 will be returned?