Which filter statement should you use?

Posted by: Pdfprep Category: 70-487 Tags: , ,

You need to create an OData filter expression that returns books that match the following characteristics:

– Published after 1/1/2000

– Have "Science" as the first word

Which filter statement should you use?

A . Option A
B . Option B
C . Option C
D . Option D

Answer: D

Explanation:

* gt

Greater than

Example:

filter= Entry_No gt 610

Query on GLEntry service. Returns entry numbers 611 and higher.

* startswith

filter=startswith(Name, ‘S’)

Query on Customer service. Returns all customers names beginning with ā€œSā€.

Leave a Reply

Your email address will not be published.