Click here to Skip to main content
15,880,405 members
Articles / Web Development / ASP.NET
Alternative
Tip/Trick

Find the count of a weekday between two dates without iterating/looping

Rate me:
Please Sign up or sign in to vote.
2.71/5 (4 votes)
11 Nov 2011CPOL 20.8K   1   6
Single line in Linq This gets you the number of weekdays, i.e., Monday to Friday between given two dates.[VB]Dim dt1 As New Date(2011, 1, 1)Dim dt2 As New Date(2011, 1, 15)Dim days As Integer = (From d As Date In _ (Enumerable.Range(0, 1 +...
Single line in Linq

This gets you the number of weekdays, i.e., Monday to Friday between given two dates.
[VB]
VB
Dim dt1 As New Date(2011, 1, 1)
Dim dt2 As New Date(2011, 1, 15)
Dim days As Integer = (From d As Date In _
  (Enumerable.Range(0, 1 + dt2.Subtract(dt1).Days).Select(Function(offset) dt1.AddDays(offset)).ToArray()) _
  Where d.DayOfWeek >= DayOfWeek.Monday And d.DayOfWeek <= DayOfWeek.Friday Select 1).Sum

[C#]
C#
DateTime dt1 = new DateTime(2011, 1, 1);
DateTime dt2 = new DateTime(2011, 1, 15);
int days = (from d in (Enumerable.Range(0, 1 + dt2.Subtract(dt1).Days).Select(offset => dt1.AddDays(offset)).ToArray())where d.DayOfWeek >= DayOfWeek.Monday & d.DayOfWeek <= DayOfWeek.Friday1).Sum;


You can easily modify it to get the count of a particular day as,
[VB]
VB
Dim dt1 As New Date(2011, 1, 1)
Dim dt2 As New Date(2011, 1, 15)
Dim days As Integer = (From d As Date In _
  (Enumerable.Range(0, 1 + dt2.Subtract(dt1).Days).Select(Function(offset) dt1.AddDays(offset)).ToArray()) _
  Where d.DayOfWeek = DayOfWeek.Monday Select 1).Sum

[C#]
C#
DateTime dt1 = new DateTime(2011, 1, 1);
DateTime dt2 = new DateTime(2011, 1, 15);
int days = (from d in (Enumerable.Range(0, 1 + dt2.Subtract(dt1).Days).Select(offset => dt1.AddDays(offset)).ToArray())where d.DayOfWeek == DayOfWeek.Monday).Sum;


See here, Enumerable.Range gets you the array of dates between given dates. You can apply your conditions and get different results using Linq on it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
India India
Working since 2006 on VBA, VB6, VB.Net, C#, ASP.Net, MSSQL




  • Courage is not the absence of fear, but rather the judgement that something is more important than fear.
  • The fear of suffering is worse than the suffering itself.
  • People need not fear the unknown if they are capable of achieving what they need and want.
  • Every blessing ignored becomes a curse.
  • Sometimes what's in your head isn't as crazy as you think.
  • We never really grow up, we only learn how to act in public.
  • You can make very bad teams with very good individuals.
  • Admitting mistakes means you have a sense of responsibility in your actions and that shows you are more matured than almost anyone. -Nithin


Comments and Discussions

 
GeneralReason for my vote of 1 This iterates, which is clearly to b... Pin
AspDotNetDev11-Nov-11 6:50
protectorAspDotNetDev11-Nov-11 6:50 
GeneralRe: Sorry for those wrong variable names. Corrected it. About it... Pin
Prerak Patel11-Nov-11 16:19
professionalPrerak Patel11-Nov-11 16:19 
GeneralWhy did you provide an alternate using VB when the original ... Pin
#realJSOP10-Nov-11 2:18
mve#realJSOP10-Nov-11 2:18 
GeneralRe: As I am basically a VB developer, I just made it and posted.... Pin
Prerak Patel10-Nov-11 3:27
professionalPrerak Patel10-Nov-11 3:27 
GeneralDont you think LINQ is internally again a loop though with m... Pin
zenwalker19859-Nov-11 18:58
zenwalker19859-Nov-11 18:58 
GeneralRe: That's good example of maths in code, still, with this code ... Pin
Prerak Patel9-Nov-11 20:08
professionalPrerak Patel9-Nov-11 20:08 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.