Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am having two date values, one already stored in the database and the other selected by the user using DatePicker. The use case is to search for a particular date from the database.

The value previously entered in the database always has time component of 12:00:00, where as the date entered from picker has different time component.

I am interested in only the date components and would like to ignore the time component.

What are the ways to do this comparison in C#?

Also, how to do this in LINQ?

UPDATE: On LINQ to Entities, the following works fine.

e => DateTime.Compare(e.FirstDate.Value, SecondDate) >= 0
share|improve this question
You can also take a look at this SO question: stackoverflow.com/questions/683037/how-to-compare-dates-in-c/… – Quintin Robinson Sep 25 '09 at 16:16

12 Answers

up vote 60 down vote accepted

You can use the DateTime.Date property to perform a date-only comparison.

DateTime a = GetFirstDate();
DateTime b = GetSecondDate();

if (a.Date.Equals(b.Date))
{
    // the dates are equal
}
share|improve this answer
3  
It's easy to compare date but the question is related to LINQ to Entities who is unable to convert .Date property into SQL. – Michaël Carpentier Jan 30 at 13:06
@MichaëlCarpentier: good point. Apparently it still solved the OP's problem. – Fredrik Mörk Jan 30 at 13:17

I think this could help you.

I made an extension since I have to compare dates in repositories filled with EF data and so .Date was not an option since it is not implemented in LinqToEntities translation.

Here is the code:

        /// <summary>
    /// Check if two dates are same
    /// </summary>
    /// <typeparam name="TElement">Type</typeparam>
    /// <param name="valueSelector">date field</param>
    /// <param name="value">date compared</param>
    /// <returns>bool</returns>
    public Expression<Func<TElement, bool>> IsSameDate<TElement>(Expression<Func<TElement, DateTime>> valueSelector, DateTime value)
    {
        ParameterExpression p = valueSelector.Parameters.Single();

        var antes = Expression.GreaterThanOrEqual(valueSelector.Body, Expression.Constant(value.Date, typeof(DateTime)));

        var despues = Expression.LessThan(valueSelector.Body, Expression.Constant(value.AddDays(1).Date, typeof(DateTime)));

        Expression body = Expression.And(antes, despues);

        return Expression.Lambda<Func<TElement, bool>>(body, p);
    }

then you can use it in this way.

 var today = DateTime.Now;
 var todayPosts = from t in turnos.Where(IsSameDate<Turno>(t => t.MyDate, today))
                                      select t);
share|improve this answer
1  
Nice ... useful. – Richard Hein Nov 19 '09 at 14:25

Use the class EntityFunction for trimming the time portion.

using System.Data.Objects;    

var bla = (from log in context.Contacts
           where EntityFunctions.TruncateTime(log.ModifiedDate) ==  EntityFunctions.TruncateTime(today.Date)
           select log).FirstOrDefault();

Source: http://social.msdn.microsoft.com/Forums/en-US/csharpgeneral/thread/84d4e18b-7545-419b-9826-53ff1a0e2a62/

share|improve this answer
2  
Great! That is the real solution! – SolarX Jul 31 '12 at 17:49
works with Oracle too. – Ray Cheng Apr 3 at 22:30

Just always compare the Date property of DateTime, instead of the full date time.

When you make your LINQ query, use date.Date in the query, ie:

var results = from c in collection
              where c.Date == myDateTime.Date
              select c;
share|improve this answer
5  
I am getting the error "The specified type member 'Date' is not supported in LINQ to Entities. Only initializers, entity members, and entity navigation properties are supported.". Any thoughts? – pencilslate Sep 25 '09 at 16:46
Yeah - your provider doesn't handle the .Date property directly. You'll have to pull it out, and compare the dates later. – Reed Copsey Sep 25 '09 at 17:03
.Date can't be used in Linq To Entities, unfortunately. Hopefully MS will add that overload support soon – John Kaster Jul 1 '11 at 16:59
1  
Always compare the Date property? I've googled into this comment because I have wondered if that is the best practice, ie. to always use the Date property, even when it's something like candidate.Date >= base.Date. Theoritically, the candidate.Date time must be >= 12:00:00, so using the Date property is redundant, but I'll stick with Reed's advice. – Javaman59 Apr 11 '12 at 6:12

To do it in LINQ to Entities, you have to use supported methods:

var year = someDate.Year;
var month = ...
var q = from r in Context.Records
        where Microsoft.VisualBasic.DateAndTime.Year(r.SomeDate) == year 
              && // month and day

Ugly, but it works, and it's done on the DB server.

share|improve this answer
1  
You're right, Craig. That IS ugly. Very ugly. – John Kaster Jul 1 '11 at 17:00
+1 for the ugliness – ROFLwTIME Apr 2 '12 at 15:09

Here's a different way to do it, but it's only useful if SecondDate is a variable you're passing in:

DateTime startDate = SecondDate.Date;
DateTime endDate = startDate.AddDays(1).AddTicks(-1);
...
e => e.FirstDate.Value >= startDate && e.FirstDate.Value <= endDate

I think that should work

share|improve this answer
Excellent. Worked for me. It was the explicit DateTime = x.Date; I was missing. If I used var, or had the value inline in the comparison it failed with the exception reported. Thanks. – Tim Croydon Jun 1 '12 at 9:45
Glad it worked, Tim. Sorry for the delay in responding - I haven't actually logged in to SO in a while. – John Kaster Oct 22 '12 at 0:05

If you use the Date property for DB Entities you will get exception:

"The specified type member 'Date' is not supported in LINQ to Entities. Only initializers, entity members, and entity navigation properties are supported."

You can use something like this:

  DateTime date = DateTime.Now.Date;

  var result = from client in context.clients
               where client.BirthDate >= date
                     && client.BirthDate < date.AddDays(1)
               select client;
share|improve this answer

Just if somebody arrives here googling or binging... compiled workarounds:

http://blog.integratedsolution.eu/post/2011/02/06/The-specified-type-member-Date-is-not-supported-in-LINQ-to-Entities.aspx

share|improve this answer

//Note for Linq Users/Coders

This should give you the exact comparison for checking if a date falls within range when working with input from a user - date picker for example:

((DateTime)ri.RequestX.DateSatisfied).Date >= startdate.Date &&
        ((DateTime)ri.RequestX.DateSatisfied).Date <= enddate.Date

where startdate and enddate are values from a date picker.

share|improve this answer

Try this... It works fine to compare Date properties between two DateTimes type:

query = query.ToList()
             .Where(x => x.FirstDate.Date == SecondDate.Date)
             .AsQueryable();
share|improve this answer
1  
P.S.: I usually use this way when the DateTimes have Time value and I want to compare only the Date. – Raskunho Feb 19 '12 at 0:36

Without time than try like this:

TimeSpan ts = new TimeSpan(23, 59, 59);
toDate = toDate.Add(ts);
List<AuditLog> resultLogs = 
    _dbContext.AuditLogs
    .Where(al => al.Log_Date >= fromDate && al.Log_Date <= toDate)
    .ToList();
return resultLogs;
share|improve this answer

You can user below link to compare 2 dates without time :

private bool DateGreaterOrEqual(DateTime dt1, DateTime dt2)
        {
            return DateTime.Compare(dt1.Date, dt2.Date) >= 0;
        }

private bool DateLessOrEqual(DateTime dt1, DateTime dt2)
        {
            return DateTime.Compare(dt1.Date, dt2.Date) <= 0;
        }

the Compare function return 3 different values: -1 0 1 which means dt1>dt2, dt1=dt2, dt1

share|improve this answer
Why don't you just return DateTime.Compare(dt1.Date, dt2.Date)? This makes all you need. – Johnny Graber Oct 27 '12 at 6:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.