Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

linq query get last day of month

DateTime now = DateTime.Now;
int DaysInMonth = DateTime.DaysInMonth(now.Year, now.Month); //gets last day of the month value
DateTime LastDayOfThisMonth = new DateTime(now.Year, now.Month, DaysInMonth); //created DateTimeobject for the last day

//reference LastDayOfThisMonth in your comparison
 
PREVIOUS NEXT
Tagged: #linq #query #day #month
ADD COMMENT
Topic
Name
7+6 =