DateRangesOverlap Element (Query)
Applies to: SharePoint Foundation 2010
Used in queries to compare the dates in a recurring event with a specified DateTime value, to determine whether they overlap.
<DateRangesOverlap>
<FieldRef Name = "Field_Name"/>
<Value Type = "Field_Type"/>
<XML />
</DateRangesOverlap>
Attributes
Attribute |
Description |
---|---|
None |
N/A |
Child Elements
Parent Elements
Occurrences
Minimum: 0 Maximum: Unbounded |
Example
The following example compares the event date and end date of a recurring event with the current date and time.
<Query>
<Where>
<DateRangesOverlap>
<FieldRef Name="EventDate"></FieldRef>
<FieldRef Name="EndDate"></FieldRef>
<FieldRef Name="RecurrenceID"></FieldRef>
<Value Type="DateTime">
<Now/>
</Value>
</DateRangesOverlap>
</Where>
</Query>