> 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/base-orm-service/service-methods/finders/findorfail.md).

# findOrFail

Finds and returns the first result for the given query or throws an exception if not found, this method delegates to the `findIt()` method

## Returns

* This function returns *any*
* This function could throw an **EntityNotFound** exception

## Arguments

| Key        | Type    | Required | Default | Description                |
| ---------- | ------- | -------- | ------- | -------------------------- |
| query      | string  | No       | ---     | The HQL Query to execute   |
| params     | any     | No       | {}      | Positional or named params |
| timeout    | numeric | No       | 0       |                            |
| ignoreCase | boolean | No       | false   |                            |
| datasource | string  | No       |         |                            |

## Examples

```javascript
// My First Post
ormService.findOrFail("from Post as p where p.author='Luis Majano'");
// With positional parameters
ormService.findOrFail("from Post as p where p.author=?", ["Luis Majano"]);
// with a named parameter (since 0.5)
ormService.findOrFail("from Post as p where p.author=:author and p.isActive=:active", { author="Luis Majano",active=true} );
```


---

# 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:

```
GET https://coldbox-orm.ortusbooks.com/base-orm-service/service-methods/finders/findorfail.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
