示例#1
0
        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());