12
私は共有リストからいくつかのアイテムを取得しようとしていますが、カスタムカラムの日付に依存しています。SharepointのCAMLクエリの日時比較
私はU2U Caml Builderでクエリを作成しましたが、それはうまくいきましたが、私のWebパーツの自分のコードに入れても、常にリストのすべてのアイテムが返されます。
DateTime startDate = new DateTime(Int32.Parse(year), 1, 1);
DateTime endDate = new DateTime(Int32.Parse(year), 12, 31);
SPQuery q = new SPQuery();
q.Query = "<Query><Where><And><Geq><FieldRef Name='Publicate Date' /><Value IncludeTimeValue='FALSE' Type='DateTime'>" + SPUtility.CreateISO8601DateTimeFromSystemDateTime(startDate) + "</Value></Geq><Leq><FieldRef Name='Publicate_x0020_Date' /><Value IncludeTimeValue='FALSE' Type='DateTime'>" + SPUtility.CreateISO8601DateTimeFromSystemDateTime(endDate) + "</Value></Leq></And></Where></Query>";
SPListItemCollection allItem = library.GetItems(q);
ありがとうございました!最悪、私はすでにこのf ***エラーhahahahaの同僚を助ける! –
私はそれが月曜日だったという事実にいつもこれらのエラーを非難します。 –