Esempio n. 1
0
 private QueryOperationResponse <T> QueryResponse <T>(string xml, IQueryable <T> query)
 {
     return((QueryOperationResponse <T>)
            AtomParserTests.CreateQueryResponse <T>(this.context, AtomParserTests.EmptyHeaders, query as DataServiceQuery, xml));
 }
 internal IEnumerable <T> CreateTestMaterializeAtom <T>(
     string text,
     IQueryable <T> query)
 {
     return(AtomParserTests.CreateQueryResponse(this.context, EmptyHeaders, query, text));
 }