Table of Contents

Enum MetadataFilterOperator

Namespace
LMKit.Data
Assembly
LM-Kit.NET.dll

Identifies the operation a MetadataFilter node applies. Comparison operators evaluate one metadata key against one or more typed values; And and Or combine child filters.

public enum MetadataFilterOperator

Fields

Equal = 0

The metadata value equals the filter value.

NotEqual = 1

The metadata key is present and its value differs from the filter value.

GreaterThan = 2

The metadata value is strictly greater than the filter value.

GreaterThanOrEqual = 3

The metadata value is greater than or equal to the filter value.

LessThan = 4

The metadata value is strictly less than the filter value.

LessThanOrEqual = 5

The metadata value is less than or equal to the filter value.

In = 6

The metadata value equals at least one of the filter values.

NotIn = 7

The metadata key is present and its value equals none of the filter values.

Exists = 8

The metadata key is present (or absent, when the filter value is false), regardless of its value.

And = 9

Every child filter matches.

Or = 10

At least one child filter matches.

Share