MemoryBufferTableFindRow Method |
Finds and returns the row with the specified primary key.
Namespace:
Aloe.SystemFrameworks.Domain.DataAccess
Assembly:
Aloe.SystemFrameworks.Domain (in Aloe.SystemFrameworks.Domain.dll) Version: 20.1.3.5
Syntaxpublic IBufferRow FindRow(
Guid id,
bool includeDeletedRows = false
)
Public Function FindRow (
id As Guid,
Optional includeDeletedRows As Boolean = false
) As IBufferRow
public:
virtual IBufferRow^ FindRow(
Guid^ id,
bool includeDeletedRows = false
) sealed
abstract FindRow :
id : Guid *
?includeDeletedRows : bool
(* Defaults:
let _includeDeletedRows = defaultArg includeDeletedRows false
*)
-> IBufferRow
override FindRow :
id : Guid *
?includeDeletedRows : bool
(* Defaults:
let _includeDeletedRows = defaultArg includeDeletedRows false
*)
-> IBufferRow
Parameters
- id
- Type: SystemGuid
The primary key value. - 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 primary key value.
Implements
IBufferTableFindRow(Guid, Boolean)
See Also