Thoughts on C#, .NET, programming, software development and productivity. Tips and tricks to solve various programming problems.
Using Simple Linq.
from row in context.TableA select row;
Using Linq Lembda expression
context.TableA.Select(row=>row);
No comments:
Post a Comment