Table of Contents

Method NotIn

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

NotIn(string, params MetadataFilterValue[])

Creates a filter matching entries that carry key with a value equal to none of values. A missing key does not match.

public static MetadataFilter NotIn(string key, params MetadataFilterValue[] values)

Parameters

key string
values MetadataFilterValue[]

Returns

MetadataFilter

NotIn(string, IEnumerable<string>)

Creates a filter matching entries that carry key with a value equal to none of values. A missing key does not match.

public static MetadataFilter NotIn(string key, IEnumerable<string> values)

Parameters

key string
values IEnumerable<string>

Returns

MetadataFilter
Share