Class ItemConfigTableInfo
Table 'item_config': This table is a generic table for storing item configuration. It is only used by the class ItemConfig.
Implements
Inherited Members
Namespace: SuperOffice.CRM.Data
Assembly: SoDataBase.dll
Syntax
[DatabaseTable("item_config")]
public class ItemConfigTableInfo : 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 ItemConfig in the database dictionary: item_config
Declaration
public const string DictionaryTableName = "item_config"
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 ItemConfig 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 |
Domain
Field 'domain' in table 'item_config': Dictionary type Int, .NET type: Int32
The domain for which this item belongs (domains are defined in ItemConfig.h)
Declaration
public Int32FieldInfo Domain { get; }
Property Value
Type | Description |
---|---|
Int32FieldInfo |
ItemConfigId
Field 'id' in table 'item_config': Dictionary type PK, .NET type: Int32
Primary key
Declaration
public Int32FieldInfo ItemConfigId { get; }
Property Value
Type | Description |
---|---|
Int32FieldInfo |
ItemId
Field 'item_id' in table 'item_config': Dictionary type Int, .NET type: Int32
The id of the element for which this item belongs
Declaration
public Int32FieldInfo ItemId { get; }
Property Value
Type | Description |
---|---|
Int32FieldInfo |
ItemName
Field 'item_name' in table 'item_config': Dictionary type String[256], .NET type: String
The name for this config item
Declaration
public StringFieldInfo ItemName { get; }
Property Value
Type | Description |
---|---|
StringFieldInfo |
ItemValue
Field 'item_value' in table 'item_config': Dictionary type Clob, .NET type: String
The value for this config item
Declaration
public StringFieldInfo ItemValue { get; }
Property Value
Type | Description |
---|---|
StringFieldInfo |
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 |