|
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.252-beta+d6f44256e7cdcd1b3455fcb1dc7bd1c8d65c988a
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