Example #1
0
 /// <summary>Fetch the specific field from the current record of this table.</summary>
 /// <param name="fName">ESE column name to load from the table.</param>
 /// <returns>The field value.</returns>
 /// <remarks>This method was implemented because sometimes,
 /// e.g. while traversing the DB-backed tree searching for something,
 /// you only need the value of a single field.</remarks>
 public object FetchSingleField(string fName)
 {
     return(m_serializer.FetchSingleField(this, fName));
 }