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”.