回答編集履歴
1
コメントを追加
test
CHANGED
@@ -28,7 +28,11 @@
|
|
28
28
|
|
29
29
|
|
30
30
|
|
31
|
+
// もととなるデータの配列を監視する
|
32
|
+
|
31
33
|
var ox = _model.ObserveProperty(m => m.Records); // IObservable<Sample[]>
|
34
|
+
|
35
|
+
// 内容を生データと重複除外版とで分ける
|
32
36
|
|
33
37
|
ViewRecords = ox.
|
34
38
|
|
@@ -38,7 +42,7 @@
|
|
38
42
|
|
39
43
|
Distincted = ox.
|
40
44
|
|
41
|
-
SelectMany(rec => rec.Select(r => r.Address).Distinct()).
|
45
|
+
SelectMany(rec => rec.Select(r => r.Address).Distinct()). // IObservable<string>
|
42
46
|
|
43
47
|
ToReadOnlyReactivecollection();
|
44
48
|
|