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