Exemplo 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));
 }
Exemplo n.º 2
0
 internal IEnumerable <T> CreateTestMaterializeAtom <T>(
     string text,
     IQueryable <T> query)
 {
     return(AtomParserTests.CreateQueryResponse(this.context, EmptyHeaders, query, text));
 }