如何根据 SharePoint 中的“CurrentDateTime”“过滤”具有“DateTime”格式的数据?
我有一个名为“CreatedOn”(DateTime)的日期时间数据字段,我想在我想仅显示“GreaterThan Or EqualTo”和“CurrentDateTime”的项目中应用过滤器。
我在 where 条件下尝试使用此 CAML 查询但没有成功,它仅根据当前日期而不是“CurrentDateTime”进行过滤
<Where> <Geq> <FieldRef Name="CreatedOn"/> <Value Type="DateTime" IncludeDateTime="TRUE"> <Today/> </Value> </Geq> </Where>
任何帮助表示赞赏。
维努