You create a Microsoft .NET Framework console application that uses a Representational State
Transfer (REST) API to query a custom list named Products. The application contains the
following code segment. AdventureWorksDataContext codc = new
AdventureWorksDataContext(new Uri(“http:// contoso/_vti_bin/listdata.svc”)); codc.Credentials =
CredentialCache.DefaultCredentials; You need to read all items in Products into an object. Which
method should you use?
A.
code.Products.All
B.
code.Products.AsQueryable
C.
code.Products.ElementAt
D.
code.Products.ToList
Explanation: