Show / Hide Table of Contents

Class KbEntryCommentTableInfo

Table 'kb_entry_comment': Comments to entries in the knowledge base, typically made by customers

Inheritance
Object
TableInfo
KbEntryCommentTableInfo
Implements
ICloneable
Inherited Members
TableInfo.ToString()
TableInfo.RegisterFields(FieldInfo[])
TableInfo.FieldInfoFromSoField(SoField)
TableInfo.Clone()
TableInfo.IsSameTable(TableInfo)
TableInfo.FindField(String)
TableInfo.ProtAll
TableInfo.HashCheckFields
TableInfo.TableName
TableInfo.DbName
TableInfo.IsDictionaryTable
TableInfo.All
TableInfo.Item[String]
TableInfo.PrimaryKeyField
Object.Equals(Object)
Object.Equals(Object, Object)
Object.ReferenceEquals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
Namespace: SuperOffice.CRM.Data
Assembly: SoDataBase.dll
Syntax
[DatabaseTable("kb_entry_comment")]
public class KbEntryCommentTableInfo : 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 KbEntryComment in the database dictionary: kb_entry_comment

Declaration
public const string DictionaryTableName = "kb_entry_comment"
Field Value
Type Description
String

Properties

Author

Field 'author' in table 'kb_entry_comment': Dictionary type String[256], .NET type: String

The author of the entry

Declaration
public StringFieldInfo Author { get; }
Property Value
Type Description
StringFieldInfo

Body

Field 'body' in table 'kb_entry_comment': Dictionary type Clob, .NET type: String

The contents of the comment.

Declaration
public StringFieldInfo Body { get; }
Property Value
Type Description
StringFieldInfo

CustomerId

Field 'customer_id' in table 'kb_entry_comment': Dictionary type FK, .NET type: Int32

The id of the customer that created this comment.

Declaration
public Int32FieldInfo CustomerId { get; }
Property Value
Type Description
Int32FieldInfo

CustomerId_InnerJoin_Person

Generated join from the foreign key CustomerId in this table, to its target table PersonTableInfo.

Declaration
public TargetedInnerJoin<PersonTableInfo> CustomerId_InnerJoin_Person { get; }
Property Value
Type Description
TargetedInnerJoin<PersonTableInfo>

DbiAgentId

Field 'dbi_agent_id' in table 'kb_entry_comment': Dictionary type FK, .NET type: Int32

Integration agent (eJournal)

Declaration
public Int32FieldInfo DbiAgentId { get; }
Property Value
Type Description
Int32FieldInfo

DbiAgentId_InnerJoin_DbiAgent

Generated join from the foreign key DbiAgentId in this table, to its target table DbiAgentTableInfo.

Declaration
public TargetedInnerJoin<DbiAgentTableInfo> DbiAgentId_InnerJoin_DbiAgent { get; }
Property Value
Type Description
TargetedInnerJoin<DbiAgentTableInfo>

DbiKey

Field 'dbi_key' in table 'kb_entry_comment': Dictionary type String[256], .NET type: String

The primary key for the integrated entry in the external datasource.

Declaration
public StringFieldInfo DbiKey { get; }
Property Value
Type Description
StringFieldInfo

DbiLastModified

Field 'dbi_last_modified' in table 'kb_entry_comment': Dictionary type DateTime, .NET type: DateTime

When the entry was last modified.

Declaration
public DateTimeFieldInfo DbiLastModified { get; }
Property Value
Type Description
DateTimeFieldInfo

DbiLastSyncronized

Field 'dbi_last_syncronized' in table 'kb_entry_comment': Dictionary type DateTime, .NET type: DateTime

Last external syncronization.

Declaration
public DateTimeFieldInfo DbiLastSyncronized { get; }
Property Value
Type Description
DateTimeFieldInfo

Definition

Definition of the table as described in the deployed runtime dictionary

Declaration
public override SoTable Definition { get; }
Property Value
Type Description
SoTable
Overrides
TableInfo.Definition

DictionaryTableNumber

Table number for table KbEntryComment 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

KbEntryCommentId

Field 'id' in table 'kb_entry_comment': Dictionary type PK, .NET type: Int32

The primary key (auto-incremented)

Declaration
public Int32FieldInfo KbEntryCommentId { get; }
Property Value
Type Description
Int32FieldInfo

KbEntryId

Field 'kb_entry_id' in table 'kb_entry_comment': Dictionary type FK, .NET type: Int32

The id of the kb_entry which this comment belongs to.

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>

PublishStatus

Field 'publish_status' in table 'kb_entry_comment': Dictionary type Enum, .NET type: Int16

Publish status of comment. 0 is undefined, 1 is not published, 2 is published

Declaration
public UInt16FieldInfo PublishStatus { get; }
Property Value
Type Description
UInt16FieldInfo

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

TimePosted

Field 'time_posted' in table 'kb_entry_comment': Dictionary type DateTime, .NET type: DateTime

When the comment was posted.

Declaration
public DateTimeFieldInfo TimePosted { get; }
Property Value
Type Description
DateTimeFieldInfo

Implements

System.ICloneable

Extension Methods

EnumUtil.MapEnums<From, To>(From)
Converters.MapEnums<From, To>(From)
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top