# django.core.exceptions.FieldError: Cannot resolve keyword 'wrong_field' into field. Choices are: id, name, created_at

- **ID:** `python/django-orm-lazy-evaluation-error`
- **Domain:** python
- **Category:** data_error
- **Verification:** ai_generated
- **Fix Rate:** 80%

## Root Cause

Using a field name in filter() or exclude() that does not exist on the model.

## Version Compatibility

| Version | Status | Introduced | Deprecated |
|---------|--------|------------|------------|
| 3.x | active | — | — |

## Workarounds

1. **** (95% success)
   ```
   Check model fields and use correct field name: MyModel.objects.filter(actual_field=value)
   ```
2. **** (90% success)
   ```
   Use double underscore to traverse relationships: MyModel.objects.filter(related__field=value)
   ```

## Dead Ends

- **** — Doesn't fix the root cause; the queryset still fails when executed. (80% fail)
- **** — Loses functionality and may return incorrect data. (70% fail)
