在 CAML 查询中将日期时间格式修剪为仅日期格式

发布于 2024-07-09 13:18:07 字数 223 浏览 5 评论 0原文

我正在尝试为 SharePoint 2007 环境构建 CAML 查询,以从日历列表中获取项目。 想要查询具有给定“开始日期”和“结束日期”的项目,日历列表包含日期时间格式的“EventDate”和“EndDate”。 我只对日期时间字段的日期部分感兴趣。

如何将日历列表的“EventDate”日期时间字段修剪为仅日期并进行比较?

除了 CAML 之外还有其他方法可以完成此任务吗?

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.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

捎一片雪花 2024-07-16 13:18:10

这适用于 ssrs 2005 吗?

2008-12-03T12:00:00Z

does this work with ssrs 2005??

2008-12-03T12:00:00Z

往日情怀 2024-07-16 13:18:08

不幸的是您必须使用 CAML。

你应该能够修剪时间部分......

<Where>
   <Gt>
       <FieldRef Name='EventDate' />
       <Value IncludeTimeValue='FALSE' Type='DateTime'>2008-12-03T12:00:00Z</Value>
   </Gt>
</Where>

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>
或十年 2024-07-16 13:18:08

相反,如果您在代码中使用对象模型,则可以使用 LINQ to SharePoint (http://www .codeplex.com/LINQtoSharePoint)。

在后台,该项目只是为您创建一个 CAML 查询,但您不必直接使用 CAML。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文