Kizspy | Question: 33
(Choose 1 answer)
Choose the correct information about pagging OData.
A. To enable paging, just mention the page count at the [Queryable]
[EnableQuery(PageSize =5)]
public IActionResult GetData() => Ok(objService.GetObjects());
B. To enable paging, just mention the page count at the [Queryable]
[EnableQuery(PageIndex =5)]
public IActionResult GetData() => Ok(objService.GetObjects());
C. To enable paging, just mention the page count at the [AllowQueryable][AllowEnableQuery(PageSize =5)]
public IActionResult GetData() => Ok(objService.GetObjects());