Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the following code (a DataView that filtered by DateTime):

dv = new DataView(
        dataTable1,
        "DateTime >= '" + Convert.ToDateTime("7/5/2011 9:21:00 AM") + "'",
        "ID ASC", DataViewRowState.CurrentRows);

My datatable1 consist of the following data in the DateTime column:

  • A: "7/5/2011 9:20:59 AM"
  • B: "7/5/2011 9:21:00 AM"
  • C: "7/5/2011 9:21:01 AM"
  • D: "7/5/2011 9:22:00 AM"

Supposedly, only A should get filtered. But my code has A, B and C filtered as well, and only returns D.

What is wrong?

share|improve this question

3 Answers

up vote 1 down vote accepted

Try enclosing the date string with #. For example:

dv = new DataView(
        dataTable1,
        "DateTime >= #" + Convert.ToDateTime("7/5/2011 9:21:00 AM") + "#",
        "ID ASC", DataViewRowState.CurrentRows);
share|improve this answer
tried yours and I get "The expression contains invalid date constant '#'." – KMC Jul 6 '11 at 9:30
1  
sorry... how about if you exclude the single quotes. dv = new DataView( dataTable1, "DateTime >= #" + Convert.ToDateTime("7/5/2011 9:21:00 AM") + "#", "ID ASC", DataViewRowState.CurrentRows); – c0deNinja Jul 6 '11 at 9:34

Try this

dv = new DataView(
    dataTable1,
    "CONVERT(DateTime, System.DateTime) >= '" + Convert.ToDateTime("7/5/2011 9:21:00 AM") + "'",
    "ID ASC", DataViewRowState.CurrentRows);
share|improve this answer
@c0deNinja, tried yours and I get "The expression contains invalid date constant '#'." – KMC Jul 6 '11 at 9:26
1  
@KMC I tried your example, and the result turns out even with or without CONVERT (like I said), only A was filtered. So I am thinking about your row state, may be they were marked as deleted. Please double check! – longbkit Jul 6 '11 at 9:44

Remove the convert.todatetime.

You can try this

String date1 =String.Empty ;
date1 = "7/5/2011 9:21:00 AM";
dv = new DataView(dataTable1,"DateTime >= #" + date1 + "#", "ID ASC", DataViewRowState.CurrentRows);
share|improve this answer

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.