Learning adventures in coding
Using Simple Linq.
from row
in
context.TableA
select row;
Using Linq Lembda expression
context.TableA.Select(row=>row);