IBufferTableFindRow Method |
Finds and returns the row with the specified Id. Returns null if the row is not found.
Namespace:
Aloe.SystemFrameworks.Domain.DataAccess
Assembly:
Aloe.SystemFrameworks.Domain (in Aloe.SystemFrameworks.Domain.dll) Version: 20.1.3.5
SyntaxIBufferRow FindRow(
Guid id,
bool includeDeletedRows = false
)
Function FindRow (
id As Guid,
Optional includeDeletedRows As Boolean = false
) As IBufferRow
IBufferRow^ FindRow(
Guid^ id,
bool includeDeletedRows = false
)
abstract FindRow :
id : Guid *
?includeDeletedRows : bool
(* Defaults:
let _includeDeletedRows = defaultArg includeDeletedRows false
*)
-> IBufferRow
Parameters
- id
- Type: SystemGuid
The Id of the row. - includeDeletedRows (Optional)
- Type: SystemBoolean
if set to true [include deleted rows].
Return Value
Type:
IBufferRow
The found row or null if no row matches the given Id.
See Also