|
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.253-beta+ffb7163c9e3b771705bc5b9aa3f09870f2cb9e2c
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