> For the complete documentation index, see [llms.txt](https://coldbox-orm.ortusbooks.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://coldbox-orm.ortusbooks.com/v2.x-2/criteria-queries/coldbox-criteria-builder/results.md).

# Results

Once you have concatenated criterias together, you can execute the query via the execution methods. Please remember that these methods return the results, so they must be executed last.

| Method                                                                                                                                                                                                                                     | Description                                                                                                                                      |
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ |
| `count( propertyName="" )`                                                                                                                                                                                                                 | Note, count() can't be called on a criteria after list() has been executed.                                                                      |
| `get()`                                                                                                                                                                                                                                    | Retrieve one result only.                                                                                                                        |
| `getOrFail()`                                                                                                                                                                                                                              | Convenience method to return a single instance that matches the built up criterias query, or throws an exception if the query returns no results |
| <p><code>list(</code></p><p><code>max,</code></p><p><code>offset,</code></p><p><code>timeout,</code></p><p><code>sortOrder,</code></p><p><code>ignoreCase, asQuery=false</code></p><p><code>asStream=false</code></p><p><code>)</code></p> | Execute the criterias and give you the results.                                                                                                  |

```javascript
// Get
var results = c.idEq( 4 ).get();

// Listing
var results = c
     .like("name", "lui%")
     .list();

// Count via projections of all users that start with the letter 'L' or 'l' using case-insensitive-like
var count = c.ilike("name","L%").count();
```

{% hint style="success" %}
**Tip:** You can call `count()` and `list()` on the same criteria, but due to the internal workings of Hibernate, you must call `count()` first, then `list()`.
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://coldbox-orm.ortusbooks.com/v2.x-2/criteria-queries/coldbox-criteria-builder/results.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
