Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to select a row(object) based on max of a field Entity Framework 4.1

am trying to get a row (object) based on the max of RollNumber which is a long Datatype field. i expect it to return a null object in case there isn't any so i used SingleorDefault.But it seems my query is all wrong(work in progress on linq here). here is the query:

SchoolContextExpress db = new SchoolContextExpress();
        Profile profile = db.Profiles.Where(p => p.RollNumber == db.Profiles.Max(r=>r.RollNumber)).SingleOrDefault();

thanks for reading this.

like image 454
black sensei Avatar asked Feb 29 '12 10:02

black sensei


2 Answers

To work with empty RollNumber...

Profile profile = db.Profiles.Where(p => p.RollNumber !=0 &&  p.RollNumber == db.Profiles.Max(r=>r.RollNumber)).SingleOrDefault();

Or you may want to consider...

Profile profile = db.Profiles.Where(p => p.RollNumber == db.Profiles.Where(p1 => p1.RollNumber != 0).Max(r=>r.RollNumber)).SingleOrDefault();
like image 115
Carl Sharman Avatar answered Sep 28 '22 00:09

Carl Sharman


Another way to do beside the first answer:

Profile profile = db.Profiles.OrderByDescending(p => p.RollNumber).FirstOrDefault();
like image 34
Roy Pun Avatar answered Sep 27 '22 23:09

Roy Pun