Esempio n. 1
0
        public static IQueryable <T> AsQueryable <T>(FeedResponse <dynamic> dynamicFeed)
        {
            FeedResponse <T> response = FeedResponseBinder.Convert <T>(dynamicFeed);

            return(response.AsQueryable <T>());
        }
Esempio n. 2
0
 internal static CosmosQueryResponse CreateResponse(
     FeedResponse <CosmosElement> feedResponse,
     CosmosSerializationOptions cosmosSerializationOptions)
 {
     return(FeedResponseBinder.ConvertToCosmosQueryResponse(feedResponse, null));
 }