max date record in LINQ

后端 未结 6 1288
一个人的身影
一个人的身影 2021-02-03 21:35

I have this table named sample with these values in MS Sql Server:

 ID    Date    Description
1    2012/01/02 5:12:43    Desc1
2    2012/01/02 5:12:48    Desc2
3         


        
相关标签:
6条回答
  • 2021-02-03 22:10

    Use:

    var result = Sample.OrderByDescending(t => t.Date).First();
    
    0 讨论(0)
  • 2021-02-03 22:15
    var lastInstDate = model.Max(i=>i.ScheduleDate);
    

    We can get max date from the model like this.

    0 讨论(0)
  • 2021-02-03 22:18
    List<Sample> q = Sample.OrderByDescending(T=>T.Date).Take(1).ToList();
    

    But I think you want

    Sample q = Sample.OrderByDescending(T=>T.Date).FirstOrDefault();
    
    0 讨论(0)
  • 2021-02-03 22:21
    IList<Student> studentList = new List<Student>() { 
        new Student() { StudentID = 1, StudentName = "John", Age = 18 } ,
        new Student() { StudentID = 2, StudentName = "Steve",  Age = 15 } ,
        new Student() { StudentID = 3, StudentName = "Bill",  Age = 25 } ,
        new Student() { StudentID = 4, StudentName = "Ram" , Age = 20 } ,
        new Student() { StudentID = 5, StudentName = "Ron" , Age = 19 } 
    };
    
    var orderByDescendingResult = from s in studentList
                       orderby s.StudentName descending
                       select s;
    

    Result : Steve Ron Ram John Bill

    0 讨论(0)
  • 2021-02-03 22:24
    var result= Sample.OrderByDescending(k => k.ID).FirstOrDefault().Date;
    

    This is the best way to do this

    0 讨论(0)
  • 2021-02-03 22:26

    To get the maximum Sample value by date without having to sort (which is not really necessary to just get the maximum):

    var maxSample  = Samples.Where(s => s.Date == Samples.Max(x => x.Date))
                            .FirstOrDefault();
    
    0 讨论(0)
提交回复
热议问题