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.
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();
Another way to do beside the first answer:
Profile profile = db.Profiles.OrderByDescending(p => p.RollNumber).FirstOrDefault();
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With