MemoryBufferTableImportRow Method |
Creates and adds a new row, which duplicates the data and the state of the specified row.
Namespace:
Aloe.SystemFrameworks.Domain.DataAccess
Assembly:
Aloe.SystemFrameworks.Domain (in Aloe.SystemFrameworks.Domain.dll) Version: 20.1.3.5
Syntaxpublic IBufferRow ImportRow(
IBufferRow row,
bool acceptChanges = false
)
Public Function ImportRow (
row As IBufferRow,
Optional acceptChanges As Boolean = false
) As IBufferRow
public:
virtual IBufferRow^ ImportRow(
IBufferRow^ row,
bool acceptChanges = false
) sealed
abstract ImportRow :
row : IBufferRow *
?acceptChanges : bool
(* Defaults:
let _acceptChanges = defaultArg acceptChanges false
*)
-> IBufferRow
override ImportRow :
row : IBufferRow *
?acceptChanges : bool
(* Defaults:
let _acceptChanges = defaultArg acceptChanges false
*)
-> IBufferRow
Parameters
- row
- Type: Aloe.SystemFrameworks.Domain.DataAccessIBufferRow
The row to duplicate. The row should be from another table. - acceptChanges (Optional)
- Type: SystemBoolean
if set to true the new row has its changes accepted.
Return Value
Type:
IBufferRow
The newly created row.
Implements
IBufferTableImportRow(IBufferRow, Boolean)
See Also