Table of Contents

Interface IAsQueryableExceptBuilder<T>

Namespace
LinqToDB.Linq
Assembly
linq2db.dll

Configuration stage exposed after the rendering mode has been chosen via Parameterize() or Inline(). Allows per-member overrides via Except(params Expression<Func<T, object?>>[]).

public interface IAsQueryableExceptBuilder<T>

Type Parameters

T

Element type of the source enumerable.

Extension Methods

Methods

Except(params Expression<Func<T, object?>>[])

Flips the chosen mode for the listed members: under Parameterize() the listed members are inlined as literals; under Inline() they are rendered as parameters. Selectors are member-access chains rooted at the row, e.g. p => p.Id or p => p.Address.Zip. An empty member list is a no-op.

IAsQueryableExceptBuilder<T> Except(params Expression<Func<T, object?>>[] members)

Parameters

members Expression<Func<T, object>>[]

Returns

IAsQueryableExceptBuilder<T>