vote up 0 vote down star

How to pass in Date Time value here?

ObjectQuery<Item> _Query = ItemEntities.CreateQuery<Item>("Item");
_Query = _Query.Where("(it.StartDate >= 11/4/2009 5:06:08 PM)");

my sample code above does seem to work.

even with this

ObjectQuery<Item> _Query = ItemEntities.CreateQuery<Item>("Item");
_Query = _Query.Where("(it.StartDate >= \"11/4/2009 5:06:08 PM\")");

I got type cast error in EDM.

flag

60% accept rate

1 Answer

vote up 1 vote down check

The following should work:

ObjectQuery<Item> _Query = ItemEntities.CreateQuery<Item>("Item");
_Query = _Query.Where("(it.StartDate >= DATETIME'11/4/2009 17:06:08')");

See the documentation for more information on literals in ESQL queries.

link|flag
still doesnt work, that gives me this error "The argument types 'Edm.DateTime' and 'Edm.String' are incompatible for this operation., near WHERE predicate, line 6, column 15." – Juvil John Soriano Nov 4 at 9:28
@Juvil: I've updated the code snippet to include the DATETIME qualifier which is needed to distinguish date/time literals from string literals. – pmarflee Nov 4 at 9:52
thanks, i see that's whats missing. – Juvil John Soriano Nov 4 at 11:03

Your Answer

Get an OpenID
or

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