コード例 #1
0
ファイル: QueryableSharesHub.cs プロジェクト: NickDarvey/Qx
        public IAsyncQueryable <SharePrice> SharePrices() =>
        // Fetch the latest stock prices,
        // then continue with any updates.

        // TODO: traditional linq against database fetching the latest

        _sharesRepository.GetSharePrices().Concat(_sharesChangeFeed.GetSharePriceChanges());