Click or drag to resize

DataAccessFilterSimpleMatchRow Method

Returns true if the row matches the Where filter. Only filter conditions referencing the current table and its owner table(s) are evaluated. For more advanced matching, use the AdvancedMatchRow(IBufferRow, String, IBuffer) method.

Namespace:  Aloe.SystemFrameworks.Domain.DataAccess
Assembly:  Aloe.SystemFrameworks.Domain (in Aloe.SystemFrameworks.Domain.dll) Version: 20.1.3.5
Syntax
public bool SimpleMatchRow(
	IBufferRow row,
	IBuffer buffer,
	IMetadataProvider meta
)

Parameters

row
Type: Aloe.SystemFrameworks.Domain.DataAccessIBufferRow
The row to match.
buffer
Type: Aloe.SystemFrameworks.Domain.DataAccessIBuffer
The buffer containing the row. Used when inter-table filter conditions are used.
meta
Type: Aloe.SystemFrameworks.Domain.DataAccessIMetadataProvider
The meta-data provider.

Return Value

Type: Boolean
True if the row matches the Where filter
See Also