WithFilter<TField> Method (ITable<TRecord>)
- Last UpdatedApr 08, 2026
- 1 minute read
Creates a new ITable<TRecord> where the records are filtered by their fieldName matching fieldValue.
ITable<TRecord> WithFilter<TField>(
string fieldName,
TField fieldValue
)
ITable<TRecord^>^ WithFiltergeneric<typename TField>
(
String^ fieldName,
TField^ fieldValue
)
Parameters
- fieldName
- The name of the field to filter by.
- fieldValue
- The value of the field to filter by.
Type Parameters
- TField
- The field type.
Return Value
A new ITable<TRecord> with filtered records.