Table of Contents

Class RelationalQueryOptionsExtensions

Namespace
eQuantic.Core.Data.Relational
Assembly
eQuantic.Core.Data.Relational.dll

Relational query-option opt-ins.

public static class RelationalQueryOptionsExtensions
Inheritance
RelationalQueryOptionsExtensions
Inherited Members

Methods

AllowClientEvaluation<TEntity>(QueryOptions<TEntity>)

Opts this query into client-side evaluation of the (rare) clauses SQL cannot express — arbitrary predicates the interpreter does not model, or dialect-less collection/tuple shapes. The pushed-down part runs on the database and the residual filters the fetched rows; the fetch is a superset of the result.

public static QueryOptions<TEntity> AllowClientEvaluation<TEntity>(this QueryOptions<TEntity> options) where TEntity : class

Parameters

options QueryOptions<TEntity>

The query options.

Returns

QueryOptions<TEntity>

The same options for chaining.

Type Parameters

TEntity

The entity type.