Learning adventures in coding
Using Simple Linq.
from row in context.TableA select row;
Using Linq Lembda expression
context.TableA.Select(row=>row);
No comments :
Post a Comment