Api.SerializeObjectToColumn method
Write a serialized form of an object to a column.
Namespace: Microsoft.Isam.Esent.Interop
Assembly: Microsoft.Isam.Esent.Interop (in Microsoft.Isam.Esent.Interop.dll)
Syntax
'Declaration
Public Shared Sub SerializeObjectToColumn ( _
sesid As JET_SESID, _
tableid As JET_TABLEID, _
columnid As JET_COLUMNID, _
value As Object _
)
'Usage
Dim sesid As JET_SESID
Dim tableid As JET_TABLEID
Dim columnid As JET_COLUMNID
Dim value As ObjectApi.SerializeObjectToColumn(sesid, _
tableid, columnid, value)
public static void SerializeObjectToColumn(
JET_SESID sesid,
JET_TABLEID tableid,
JET_COLUMNID columnid,
Object value
)
Parameters
sesid
Type: Microsoft.Isam.Esent.Interop.JET_SESIDThe session to use.
tableid
Type: Microsoft.Isam.Esent.Interop.JET_TABLEIDThe table to write to. An update should be prepared.
columnid
Type: Microsoft.Isam.Esent.Interop.JET_COLUMNIDThe column to write to.
value
Type: System.ObjectThe object to write. The object must be serializable.