|
IsamDataFileBaseTWrite(IEnumerableT) Method
|
Writes specified records to disk if records were not loaded in memory otherwise updates the records in memory.
Namespace: GSF.IOAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.248-beta+a497a19de709fd99e2448886199a2c8824265ddf
Syntaxpublic virtual void Write(
IEnumerable<T> records
)
Public Overridable Sub Write (
records As IEnumerable(Of T)
)
public:
virtual void Write(
IEnumerable<T>^ records
)
abstract Write :
records : IEnumerable<'T> -> unit
override Write :
records : IEnumerable<'T> -> unit
View SourceParameters
- records IEnumerableT
- Records to be written.
Remarks
This operation will causes existing records to be deleted and replaced with the ones specified.
See Also