Linq Example :
var query = from g in db.Goan_Classifications
orderby g.Goan_Classification_Name
select g;
Dynamic Linq Example :
var query = db.Goan_Classifications.OrderBy("Goan_Classification_Name");
So it makes more easy.But the thing is that we need to use the system.Linq.Dymaic class,Which makes the development more easy.
Read More
Records and the ‘with’ operator, redux
1 week ago
0 comments:
Post a Comment