DataAccessFilterAdvancedMatchRow Method |
Matches a row against the data filter, using DataSource call.
Namespace:
Aloe.SystemFrameworks.Domain.DataAccess
Assembly:
Aloe.SystemFrameworks.Domain (in Aloe.SystemFrameworks.Domain.dll) Version: 20.1.3.5
Syntaxpublic bool AdvancedMatchRow(
IBufferRow row,
string transactionName,
IBuffer buffer
)
Public Function AdvancedMatchRow (
row As IBufferRow,
transactionName As String,
buffer As IBuffer
) As Boolean
public:
bool AdvancedMatchRow(
IBufferRow^ row,
String^ transactionName,
IBuffer^ buffer
)
member AdvancedMatchRow :
row : IBufferRow *
transactionName : string *
buffer : IBuffer -> bool
Parameters
- row
- Type: Aloe.SystemFrameworks.Domain.DataAccessIBufferRow
The row to match. - transactionName
- Type: SystemString
Name of the transaction to pass to the data source. - buffer
- Type: Aloe.SystemFrameworks.Domain.DataAccessIBuffer
Optionally - the buffer, containing the row. If not passed, the row is read from the database.
Return Value
Type:
BooleanTrue if the row is matched by the current data filter.
See Also