Interface IAsQueryableExceptBuilder<T>
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
TElement 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
membersExpression<Func<T, object>>[]