Home ITagFilterBuilder<TFilter> Interface
Post
Cancel

ITagFilterBuilder<TFilter> Interface

Definition

Namespace: EntityDb.Abstractions.Queries.FilterBuilders
Assembly: EntityDb.Abstractions

Builds a TFilter for a tag query.

1
public interface ITagFilterBuilder<TFilter> : EntityDb.Abstractions.Queries.FilterBuilders.IFilterBuilder<TFilter>

Type Parameters

TFilter
The type of filter used by the repository.

Methods

EntityIdIn(Id[]) Returns a TFilter that only includes tags with an entity id which is contained in a set of entity ids.
EntityVersionNumberGte(VersionNumber) Returns a TFilter that only includes tags with an entity version number greater than or equal to an entity version number.
EntityVersionNumberLte(VersionNumber) Returns a TFilter that only includes tags with an entity version number less than or equal to an entity version number.
TagTypeIn(Type[]) Returns a TFilter that only includes tags whose type is contained in a set of tag types.
TagLabelEq(String) Returns a TFilter that only includes tags whose Label is a particular value.
TagValueEq(String) Returns a TFilter that only includes tags whose Value is a particular value.
This post is licensed under CC BY 4.0 by the author.