LINQ queries demonstrate how to operate and query the Kintone objects wrapped in an Entity Framework data model. Listed below are some examples of LINQ queries supported by the Entity framework.
Select and Filter Retrieve records from the Accounts table where the AccountID is "155". |
|
||||
Contains
Retrieve records from the Accounts table that contains the letter "A" in the Name column. |
|
||||
Limit
Retrieve the first 10 records from the Accounts table. This helps to limit display of records. |
|
||||
Order by
Retrieve the first 10 records from the Accounts table and sort them in descending order based on the Age property. |
|
||||
Count
Count all records that match a given criterion. |
|
||||
Group By
Group records from the Accounts table based on the Address property. |
|
||||
Joins
Cross join between Accounts and Products tables. |
|