Student[] array = await dbContext.Students.OData() .Filter("LastName eq 'Alexander' or FirstMidName eq 'Laura'") .OrderBy("EnrollmentDate desc") .TopSkip("1","1 ...
OData (Open Data Protocol) is an OASIS standard that establishes best practices for designing RESTful APIs. One of the capabilities of OData is providing the ability to filter data using a ...