日付参照UserJoinDateと日付のリストを持っているlistfriendsJoinedUserJoinDateの前にサービスに参加した友人の数と、同じ時間以降の数を数えたいと思います。
次の行を書きましたが、機能しません。
List<DateTime> joinersDates = getJoinersDates();
FriendsJoinedBeforeCount = joinersDates .Where(x => x < UserJoinDate).Count();
FriendsJoinedAfterCount = joinersDates .Where(x => x >= UserJoinDate).Count();
リストjoinersDatesからUserJoinDateの前の日付の数と、同じまたは後の日付の数を数える方法を知っている人はいますか?
編集
これがImmediateWindowからのコピーです。
churnersDates.Count( x => x > UserChurnDate)
Expression cannot contain lambda expressions
UserJoinDateはDateTimeです
例:
UserJoinDate = 9.11.2010 0:30:00
(値は日付からコピーされます:{9.11.2010 0:00:00}日:9 DayOfWeek:火曜日DayOfYear:313 ...)
と
joinersDates.First() = 17.5.2011 0:30:00
ありがとう!