NavigationFilterMode
Namespace: Meshmakers.Octo.Runtime.Contracts.Repositories.Query
Controls how navigation properties affect the result set.
public enum NavigationFilterMode
Inheritance Object → ValueType → Enum → NavigationFilterMode
Implements IComparable, ISpanFormattable, IFormattable, IConvertible
Fields
| Name | Value | Description |
|---|---|---|
| Filter | 0 | Entities without matching associations are filtered out (pre-pagination). This is the default behavior. |
| Include | 1 | Entities without matching associations are kept with null values (post-pagination). Navigation lookups run only on the paginated subset, improving performance. |