Class KbEntryWordsTableInfo
Table 'kb_entry_words': This table contains all the words and how many times the are refered to in the FAQ entires
Implements
Inherited Members
Namespace: SuperOffice.CRM.Data
Assembly: SoDataBase.dll
Syntax
[DatabaseTable("kb_entry_words")]
public class KbEntryWordsTableInfo : 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 KbEntryWords in the database dictionary: kb_entry_words
Declaration
public const string DictionaryTableName = "kb_entry_words"
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 KbEntryWords 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 |
EntryOrigin
Field 'origin' in table 'kb_entry_words': Dictionary type Short, .NET type: Int16
Indicates if it is an entry word (0) or a category word (1).
Declaration
public Int16FieldInfo EntryOrigin { get; }
Property Value
Type | Description |
---|---|
Int16FieldInfo |
KbEntryWordsId
Field 'id' in table 'kb_entry_words': Dictionary type PK, .NET type: Int32
Primary key
Declaration
public Int32FieldInfo KbEntryWordsId { get; }
Property Value
Type | Description |
---|---|
Int32FieldInfo |
LeftOuterJoin_WordRelations_EntryWordId
Generated left outer join from the primary key KbEntryWordsId on this table, to WordRelations.EntryWordId.
Declaration
public TargetedLeftOuterJoin<WordRelationsTableInfo> LeftOuterJoin_WordRelations_EntryWordId { get; }
Property Value
Type | Description |
---|---|
TargetedLeftOuterJoin<WordRelationsTableInfo> |
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 |
Score
Field 'score' in table 'kb_entry_words': Dictionary type Int, .NET type: Int32
Indicates how many occurences of this word we have
Declaration
public Int32FieldInfo Score { get; }
Property Value
Type | Description |
---|---|
Int32FieldInfo |
Word
Field 'word' in table 'kb_entry_words': Dictionary type String[64], .NET type: String
A word found in a kb_entry
Declaration
public StringFieldInfo Word { get; }
Property Value
Type | Description |
---|---|
StringFieldInfo |