Class SequenceTableInfo
Table 'sequence': next_id to be used for each table
Implements
Inherited Members
Namespace: SuperOffice.CRM.Data
Assembly: SoDataBase.dll
Syntax
[DatabaseTable("sequence")]
public class SequenceTableInfo : TableInfo, ICloneable
Remarks
An instance of this class represents one instance of this table in an SQL statement. In most
cases each table appears only once in a SELECT, but in cases where you need to self-join, or
there are multiple occurrences for other reasons (typically additional restrictions in the joins),
then you will need multiple instances.
Instances of this class are created by calling
Fields
DictionaryTableName
Conceptual name of table Sequence in the database dictionary: sequence
Declaration
public const string DictionaryTableName = "sequence"
Field Value
Type | Description |
---|---|
String |
Properties
Definition
Definition of the table as described in the deployed runtime dictionary
Declaration
public override SoTable Definition { get; }
Property Value
Type | Description |
---|---|
SoTable |
Overrides
DictionaryTableNumber
Table number for table Sequence in the database dictionary; potentially changes between databases, but always the same over the lifetime of any single database
Declaration
public int DictionaryTableNumber { get; }
Property Value
Type | Description |
---|---|
Int32 |
Id
Field 'id' in table 'sequence': Dictionary type PK, .NET type: Int32
Sequence-id of host table
Declaration
public Int32FieldInfo Id { get; }
Property Value
Type | Description |
---|---|
Int32FieldInfo |
NextId
Field 'next_id' in table 'sequence': Dictionary type Id, .NET type: Int32
Next id to be used for table
Declaration
public Int32FieldInfo NextId { get; }
Property Value
Type | Description |
---|---|
Int32FieldInfo |
RuntimeDefinition
Definition of the table as described in the deployed runtime dictionary
Declaration
[Obsolete("Use instance property Definition or static member DictionaryTableNumber", true)]
public static SoTable RuntimeDefinition { get; }
Property Value
Type | Description |
---|---|
SoTable |
TableName
Field 'TableName' in table 'sequence': Dictionary type String[256], .NET type: String
The name of the table this row concerns
Declaration
public StringFieldInfo TableName { get; }
Property Value
Type | Description |
---|---|
StringFieldInfo |
TableNumber
Field 'TableNumber' in table 'sequence': Dictionary type Int, .NET type: Int32
The table number for this table, constant over the table's lifetime (but possibly different from one database to another
Declaration
public Int32FieldInfo TableNumber { get; }
Property Value
Type | Description |
---|---|
Int32FieldInfo |