Class KbEntryLogTableInfo
Table 'kb_entry_log': Who and when, if somebody edits a knowledge base entry
Implements
Inherited Members
Namespace: SuperOffice.CRM.Data
Assembly: SoDataBase.dll
Syntax
[DatabaseTable("kb_entry_log")]
public class KbEntryLogTableInfo : 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 KbEntryLog in the database dictionary: kb_entry_log
Declaration
public const string DictionaryTableName = "kb_entry_log"
Field Value
Type | Description |
---|---|
System.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 KbEntryLog 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 |
---|---|
System.Int32 |
KbEntryId
Field 'kb_entry_id' in table 'kb_entry_log': Dictionary type FK, .NET type: System.Int32
The id of the kb_entry that triggered this action.
Declaration
public Int32FieldInfo KbEntryId { get; }
Property Value
Type | Description |
---|---|
Int32FieldInfo |
KbEntryId_InnerJoin_KbEntry
Generated join from the foreign key KbEntryId in this table, to its target table KbEntryTableInfo.
Declaration
public TargetedInnerJoin<KbEntryTableInfo> KbEntryId_InnerJoin_KbEntry { get; }
Property Value
Type | Description |
---|---|
TargetedInnerJoin<KbEntryTableInfo> |
KbEntryLogId
Field 'id' in table 'kb_entry_log': Dictionary type PK, .NET type: System.Int32
The primary key (auto-incremented)
Declaration
public Int32FieldInfo KbEntryLogId { get; }
Property Value
Type | Description |
---|---|
Int32FieldInfo |
LogWhen
Field 'log_when' in table 'kb_entry_log': Dictionary type DateTime, .NET type: System.DateTime
When the action occured.
Declaration
public DateTimeFieldInfo LogWhen { get; }
Property Value
Type | Description |
---|---|
DateTimeFieldInfo |
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 'kb_entry_log': Dictionary type FK, .NET type: System.Int32
The id of the user that created this comment.
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> |