I'm unable to query any object by the DateTime properties.

public class MyModel
{
    public int Id { get; set; }
    public DateTime TimeStamp { get; set; }
}


[ServiceContract]
public class BuildJobApi
{
    [WebGet]
    public IQueryable<MyModel> GetMyModels()
    {
        return _service.GetMyModels(); // IQueryable<MyModel>
    }
}

I tried using WCF WebApi v0.5.0 and 0.6.0, both are throwing error messages.

Here's the URL generated (by WebApi) to query by Id (works):

/api/models?$filter=(Id eq 100)

Here's the URL generated to query by TimeStamp (doesn't work):

/api/models?$filter=TimeStamp ge DateTime'2012-02-22T00:00:00'

I can also query by date part (works):

/api/models?$filter=(year(ExceptionDateTime) eq 2012)

The exact error message is 500/Internal Server Error. With the message:

The server encountered an error processing the request. See server logs for more details.

Q: Is there anything that can be done to query the DateTime properties without querying each part separately?

link|improve this question

50% accept rate
Is MyModel marked as DataContract, and is it correct that the DateTime property is a TimeStamp? – GertArnold Feb 22 at 21:40
It is not marked as DataContract. TimeStamp is the name of the propery (for purposes of this demo), DateTime is the type. – joelnet Feb 22 at 23:54
It should be a DataContract. As for the TimeStamp - of course :). – GertArnold Feb 23 at 0:03
I added [DataContract] to the class and [DataMember] to each property. I am still getting the same exception. – joelnet Feb 23 at 1:45
Renewed the service reference? See server logs for more details: does that give a clue? – GertArnold Feb 23 at 9:06
feedback

1 Answer

Try to avoid serializing DateTime, use string for this.

eg:

public class MyModel
{
    public int Id { get; set; }
    public string TimeStamp { get; set; }
}

new MyModel { Id = 123, TimeStamp = DateTime.Now.ToString("o") };

the "o" is for the ISO 8601 format (culture invariant, stable format).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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