You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -51,7 +51,8 @@ Rx elevates the support for live streams of information to the same level as we
51
51
```cs
52
52
varbigTrades=
53
53
fromtradeintrades
54
-
wheretrade.Volume>1_000_000;
54
+
wheretrade.Volume>1_000_000
55
+
selecttrade;
55
56
```
56
57
57
58
This uses C#'s LINQ feature to filter `trades` down to those entities with a volume greater than one million. This query expression syntax is just a shorthand for method calls, so we could also write it this way:
0 commit comments