Class DictionaryTableInfo
Table 'dictionary': User added dictionary words
Implements
Inherited Members
Namespace: SuperOffice.CRM.Data
Assembly: SoDataBase.dll
Syntax
[DatabaseTable("dictionary")]
public class DictionaryTableInfo : 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 Dictionary in the database dictionary: dictionary
Declaration
public const string DictionaryTableName = "dictionary"
Field Value
Type | Description |
---|---|
String |
Properties
BaseId
Field 'base_id' in table 'dictionary': Dictionary type FK, .NET type: Int32
The reference to the dictionary base.
Declaration
public Int32FieldInfo BaseId { get; }
Property Value
Type | Description |
---|---|
Int32FieldInfo |
BaseId_InnerJoin_DictionaryBase
Generated join from the foreign key BaseId in this table, to its target table DictionaryBaseTableInfo.
Declaration
public TargetedInnerJoin<DictionaryBaseTableInfo> BaseId_InnerJoin_DictionaryBase { get; }
Property Value
Type | Description |
---|---|
TargetedInnerJoin<DictionaryBaseTableInfo> |
Definition
Definition of the table as described in the deployed runtime dictionary
Declaration
public override SoTable Definition { get; }
Property Value
Type | Description |
---|---|
SoTable |
Overrides
DictionaryId
Field 'id' in table 'dictionary': Dictionary type PK, .NET type: Int32
The primary key (auto-incremented)
Declaration
public Int32FieldInfo DictionaryId { get; }
Property Value
Type | Description |
---|---|
Int32FieldInfo |
DictionaryTableNumber
Table number for table Dictionary 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 |
Include
Field 'include' in table 'dictionary': Dictionary type Int, .NET type: Int32
Include/Exclude word.
Declaration
public Int32FieldInfo Include { 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 |
UserId
Field 'user_id' in table 'dictionary': Dictionary type FK, .NET type: Int32
The reference to the user.
Declaration
public Int32FieldInfo UserId { get; }
Property Value
Type | Description |
---|---|
Int32FieldInfo |
UserId_InnerJoin_Ejuser
Generated join from the foreign key UserId in this table, to its target table EjuserTableInfo.
Declaration
public TargetedInnerJoin<EjuserTableInfo> UserId_InnerJoin_Ejuser { get; }
Property Value
Type | Description |
---|---|
TargetedInnerJoin<EjuserTableInfo> |
Word
Field 'word' in table 'dictionary': Dictionary type String[33], .NET type: String
User word
Declaration
public StringFieldInfo Word { get; }
Property Value
Type | Description |
---|---|
StringFieldInfo |