Class Record
Class used to contain and build information record, used to populate relation datastructures, like DataSet.
Inherited Members
Namespace: SuperOffice.Data
Assembly: SoCore.dll
Syntax
public class Record
Constructors
Record(String)
Creates a new Record.
Declaration
public Record(string table)
Parameters
Type | Name | Description |
---|---|---|
String | table | The name of the table which the record belongs to. |
Properties
Table
Gets the name of the table which the record belongs to.
Declaration
public string Table { get; }
Property Value
Type | Description |
---|---|
String |
Values
Gets the keys and corresponding values stored on them. Maps to columns in a database-table.
Declaration
public Dictionary<string, RecordValue> Values { get; }
Property Value
Type | Description |
---|---|
Dictionary<String, RecordValue> |
Extension Methods
EnumUtil.MapEnums<From, To>(From)