up vote 1 down vote favorite
share [g+] share [fb]

I have a DataTable according to the Client Requirement it can contain invalid date say "00/00/1999",NULL,Empty String.(Typed DatSet)

When i collect them as enumerables i wish to convert any of those invalid forms to empty string.

(i.e)

 EnumerableRowCollection<DataRow> query = 
    from order in _table.AsEnumerable()
    select 
   new {
        OrderDate= 
        string.IsNullorEmpty(Convert.ToString(order.Field<DateTime>("OrderDate"))
        || 
        (How to check Date is Invalid  date)
         ? String.Empty : order.Field<DateTime>("OrderDate") 
        }

How to check whether a Date is a valid Date or not?

link|improve this question

What datatype is OrderDate, you are assigning an empty string to it in one case and a DateTime in the other? – kekekela Jul 23 '10 at 20:22
feedback

2 Answers

up vote 2 down vote accepted

DateTime.TryParse...like this given your current code:

 DateTime date;
 EnumerableRowCollection<DataRow> query = 

    from order in _table.AsEnumerable()
    select 
   new {
        OrderDate= 
        string.IsNullorEmpty(Convert.ToString(order.Field<DateTime>("OrderDate"))
        || 
        !DateTime.TryParse(Convert.ToString(order.Field<DateTime>("OrderDate")),out date)
         ? string.Empty : date.ToShortDateString() 
        }

(using notepad for an IDE so apologies if there's a syntax error but that should give you the general idea)

I'm assuming that OrderDate is a string since you are trying to assign it string.Empty, if its a DateTime then change the ternary assignment to something like DateTime.MinValue in place of the empty string (or whatever you want to use for your "invalid" dates, since an empty string is no longer an option) :

? DateTime.MinValue:date

or if OrderDate is a nullable DateTime then

? null:date
link|improve this answer
1  
Both values of the ternary operator have to be of the same type. You can't have one be a DateTime and the other be a string. – tvanfosson Jul 23 '10 at 20:20
@tvanfosson Thanks, noticed that after I posted. It was a remnant from his original code, I've addressed it my answer. – kekekela Jul 23 '10 at 20:34
feedback

I think kekekela's answer is correct, but it seems inefficient due to unnecessary duplication. I'd suggest:

 DateTime date;
 EnumerableRowCollection<DataRow> query = 

 from order in _table.AsEnumerable()
 select 
   new {
        OrderDate = 
          !DateTime.TryParse(Convert.ToString(
              order.Field<DateTime>("OrderDate")), out date)
          ? String.Empty : date.ToShortDateString()
       }

The key here is that TryParse doesn't throw on null or empty.

link|improve this answer
I'd also try it with ToString instead of Convert.ToString... – Steven Sudit Aug 3 '10 at 20:45
feedback

Your Answer

 
or
required, but never shown

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