vote up 2 vote down star

Hi everyone!! I have this recorded in SQL Server:

1- startTime (datetime): 5/2/2009 08:30 (brazilian time format: d/m/y)

2- startTime (datetime): 4/2/2009 14:30 (brazilian time format: d/m/y)

My application just records time... the date it's SQL that generates by itself be getting the date of today.

When I ask VS 2008 to order this datetime fields, it returns me that code #2 is before #1, because 4/2/2009 comes before 5/2/2009.

But, actually I want it to order by time only and ignore the date.

Is it possible??

Thanks!! André

flag

43% accept rate
You need to give more information. What's doing the ordering? What types are they? You've talked about SQL Server, but then tagged and titled this question with C#. – Jon Skeet Feb 5 at 20:12

7 Answers

vote up 9 vote down check
from d in dates
     orderby d.TimeOfDay
     select d;

or

dates.OrderBy(d => d.TimeOfDay);


Note: This will work as long as this is plain LINQ and not LINQ-to-SQL. If you're using LINQ-to-SQL to query your database, you'll need something that will translate to SQL.

link|flag
Hi, Florian! It worked! When you do this "TimeOfDay.TotalSeconds", VS treats as if all datetime are the same date? Thanks!! – AndreMiranda Feb 5 at 20:18
@Andre: if this worked for you don't forget to mark this answer as accepted :) – Daniel Schaffer Feb 5 at 20:19
Andrea, it's pulling the datetime - time of data and ordering it by the total seconds for that timespan. It ignores the datetime date for the orderby – Michael G Feb 5 at 20:20
@Daniel: your are of course absolutely right. This does work, but can/will result in a performance penalty. You would solve this with a stored procedure? See also: stackoverflow.com/questions/500676/… – Florian Feb 6 at 12:11
1  
Why use the TotalSeconds property ? TimeSpan implements IComparable<TimeSpan>, so you can compare TimeSpans directly : `dates.OrderBy(d => d.TimeOfDay)` – Thomas Levesque Oct 18 at 21:33
show 1 more comment
vote up 1 vote down

Well, you can't really store a datetime without a date, but you could just store the total seconds as an double (using @florian's method).

You'd have to add a second method to convert this back to a date in your object, if you still need a date, such as:

public class BusinessObjectWithDate
{
    private string _someOtherDbField = "";
    private double _timeInMS = 0; // save this to the database

    // sort by this? in sql or in code.  You don't really need this 
    // property, since TimeWithDate actually saves the _timeInMS field
    public double TimeInMS {      
        get { return _timeInMS; }
    }
    public DateTime TimeWithDate { // sort by this too, if you want
        get { return (new DateTime(1900,1,1).AddMilliseconds(_timeInMS)); }
        set { _timeInMS = value.TimeOfDay.TotalMilliseconds; }
    }
}

var f = new BusinessObjectWithDate();
MessageBox.Show( f.TimeWithDate.ToString() );  // 1/1/1900 12:00:00 AM
f.TimeWithDate = DateTime.Now;
MessageBox.Show( f.TimeWithDate.ToString() );  // 1/1/1900 1:14:57 PM

You could also just store the real date time, but always overwrite with 1/1/1900 when the value gets set. This would also work in sql

public class BusinessObjectWithDate
{
    private DateTime _msStoredInDate;
    public DateTime TimeWithDate
    {
        get { return _msStoredInDate; }
        set {
            var ms = value.TimeOfDay.TotalMilliseconds;
            _msStoredInDate = (new DateTime(1900, 1, 1).AddMilliseconds(ms));
        }
    }
}
link|flag
vote up 0 vote down

I used to work on a Time & Attendance system where we stored the time as an int field with just the number of minutes in there. Since we only needed to record down to the nearest minute that was fine for us.

So, I would suggest have an int field with enough capacity to store whatever granularity of the day you need.

Minutes in a Day = 1440 (int16)
Seconds in a Day = 86,400 (int32)

I'm sure you can work out the rest!

link|flag
vote up 0 vote down

@DJ: How can I save the same date (like '01/01/1900') to my DB using C#?

Thanks!!

link|flag
You should ask a seperate question for that. You can use the TimeOfDay property – ajma Feb 5 at 20:55
vote up 0 vote down

Hi everyone! I'm using Linq-To-SQL and I don't want the date. Just the time... :-) The date is coming along for the ride. Thanks!!

link|flag
vote up 2 vote down

You might also try fixing your app so it always saves the same base date with the time (like '01/01/1900' or whatever) and then you do not have to do all these slow and inefficient date stripping operations every time you need to do a query.

Or as Joel said, truncate or strip off the date portion before you do the insert or update.

link|flag
It's likely that he still needs the date, just not for this particular feature. – Daniel Schaffer Feb 5 at 20:17
"My application just records time" is what I was responding to. Doesn't sound like he needs the date. But if he does then please disregard my answer. – DJ Feb 5 at 20:21
No, he specifically said "just records time". Mostly likely it records time using getdate() or Current_timestamp constructs and the date just came along for the ride. Most efficient solution is to truncate at time of insertion. – Joel Coehoorn Feb 5 at 20:21
Ah. Well, +1 then :) – Daniel Schaffer Feb 5 at 20:30
vote up 0 vote down

Try this in your sql:

ORDER BY startTime - CAST(FLOOR(CAST(startTime AS Float)) AS DateTime)
link|flag
He said "only in C#". – Daniel Schaffer Feb 5 at 20:12
Funny: I read it as "time and time only - in C#". But ordering on the server is probably better here. – Joel Coehoorn Feb 5 at 20:17
I'm sure something might've been lost in translation - but based on the current wording, it sounds like he's already got the data out of the database and is applying extra ordering to it. – Daniel Schaffer Feb 5 at 20:18

Your Answer

Get an OpenID
or

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