EnterpriseOneEntityObjectMatchesFilter Method (DataAccessFilter, IBufferRow) |
Matches the filter against the specified row and returns the result of the match.
Namespace:
Aloe.EnterpriseOne.Model.Core
Assembly:
Aloe.EnterpriseOne.Model (in Aloe.EnterpriseOne.Model.dll) Version: 20.1.3.5
Syntaxpublic bool MatchesFilter(
DataAccessFilter filter,
IBufferRow currentRow
)
Public Function MatchesFilter (
filter As DataAccessFilter,
currentRow As IBufferRow
) As Boolean
public:
bool MatchesFilter(
DataAccessFilter^ filter,
IBufferRow^ currentRow
)
member MatchesFilter :
filter : DataAccessFilter *
currentRow : IBufferRow -> bool
Parameters
- filter
- Type: Aloe.SystemFrameworks.Domain.DataAccessDataAccessFilter
The filter. - currentRow
- Type: Aloe.SystemFrameworks.Domain.DataAccessIBufferRow
The row against which to match the filter. If null the filter will be evaluated by the server.
Return Value
Type:
Boolean
ExceptionsException | Condition |
---|
Exception | When the table (or its parents) in a filter condition cannot be matched to the rows' table. |
See Also