Class CriteriaItems
Represents a collection of criteria items to be used for building dynamic filter expressions.
Inherited Members
Namespace: Coree.NETStandard.Classes.Criteria
Assembly: Coree.NETStandard.dll
Syntax
public class CriteriaItems
Constructors
| Edit this page View SourceCriteriaItems(params CriteriaItem<object>[])
Initializes a new instance of the CriteriaItems class with the specified array of filter criteria.
Declaration
public CriteriaItems(params CriteriaItem<object>[] filters)
Parameters
Type | Name | Description |
---|---|---|
CriteriaItem<object>[] | filters | An array of CriteriaItem<TValue> that defines the set of criteria to use for filtering. |
Remarks
This constructor allows for quick instantiation of CriteriaItems with an array of predefined criteria. Each CriteriaItem<TValue> in the array represents a specific filter criterion that can be combined logically with others to perform complex queries.
Properties
| Edit this page View SourceFilters
Gets or sets an array of CriteriaItem<TValue> which define the filters to apply.
Declaration
public CriteriaItem<object>[] Filters { get; set; }
Property Value
Type | Description |
---|---|
CriteriaItem<object>[] |
Remarks
This property holds an array of criteria items, where each item specifies a condition to be used in filtering operations.