vote up 1 vote down star

I am trying to build a CAML query for SharePoint 2007 environment, to get items from a calendar list. Want to query items with a given 'From date' and 'To date', the calendar list contains 'EventDate' and 'EndDate' in Datetime format. I am only interested in the date part of the datetime field.

How can I trim the "EventDate" DateTime field of Calendar list to just Date and compare?

Is there any other way to get this done apart from CAML.

flag

75% accept rate

2 Answers

vote up 2 vote down check

Unfortunately you have to use CAML.

You should be able to trim the time part...

<Where>
   <Gt>
       <FieldRef Name='EventDate' />
       <Value IncludeTimeValue='FALSE' Type='DateTime'>2008-12-03T12:00:00Z</Value>
   </Gt>
</Where>
link|flag
vote up 0 vote down

Conversely, if you are working in with the object model in code, you can use LINQ to SharePoint (http://www.codeplex.com/LINQtoSharePoint).

In the background, the project is just creating a CAML Query for you but you won't have to use CAML directly.

link|flag

Your Answer

Get an OpenID
or

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