在 CAML 查询中将日期时间格式修剪为仅日期格式
我正在尝试为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这适用于 ssrs 2005 吗?
2008-12-03T12:00:00Z
does this work with ssrs 2005??
2008-12-03T12:00:00Z
不幸的是您必须使用 CAML。
你应该能够修剪时间部分......
Unfortunately you have to use CAML.
You should be able to trim the time part...
相反,如果您在代码中使用对象模型,则可以使用 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.