DataAccessFilterGetAdvancedMatchRowCommand Method |
Returns a command, which 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 DataSourceCommand GetAdvancedMatchRowCommand(
IBufferRow row,
string transactionName = null,
IBuffer buffer = null
)
Public Function GetAdvancedMatchRowCommand (
row As IBufferRow,
Optional transactionName As String = Nothing,
Optional buffer As IBuffer = Nothing
) As DataSourceCommand
public:
DataSourceCommand^ GetAdvancedMatchRowCommand(
IBufferRow^ row,
String^ transactionName = nullptr,
IBuffer^ buffer = nullptr
)
member GetAdvancedMatchRowCommand :
row : IBufferRow *
?transactionName : string *
?buffer : IBuffer
(* Defaults:
let _transactionName = defaultArg transactionName null
let _buffer = defaultArg buffer null
*)
-> DataSourceCommand
Parameters
- row
- Type: Aloe.SystemFrameworks.Domain.DataAccessIBufferRow
The row to match. - transactionName (Optional)
- Type: SystemString
Name of the transaction to pass to the data source. - buffer (Optional)
- Type: Aloe.SystemFrameworks.Domain.DataAccessIBuffer
Optionally - the buffer, containing the row. If not passed, the row is read from the database.
Return Value
Type:
DataSourceCommandTrue if the row is matched by the current data filter.
See Also