Home ModifiedQueryOptions Class
Post
Cancel

ModifiedQueryOptions Class

Definition

Namespace: EntityDb.Common.Queries.Modified
Assembly: EntityDb.Common

Options for modified queries, which can be created via QueryExtensions.

1
public class ModifiedQueryOptions : System.IEquatable<ModifiedQueryOptions>

Inheritance: Object

Properties

InvertFilter If true, then the new query will return the value of Not(TFilter) applied to the filter of the original query. Otherwise, the new query will return the same filter as the original query.
ReverseSort If true, then the new query will pass the opposite values of ascending to the sort builder of the original query. Otherwise, the new query will return the same sort as the original query.
ReplaceSkip If not null, then the new query will return this value for Skip. Otherwise, the new query will return the same Skip as the original query.
ReplaceTake If not null, then the new query will return this value for Take. Otherwise, the new query will return the same Skip as the original query.
This post is licensed under CC BY 4.0 by the author.