Class QuoteConnectionTableInfo
Table 'QuoteConnection': Primary key in the CRM database. Definition of a connection to an external system, for the Quote system.
Implements
Inherited Members
Namespace: SuperOffice.CRM.Data
Assembly: SoDataBase.dll
Syntax
[DatabaseTable("QuoteConnection")]
public class QuoteConnectionTableInfo : 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 QuoteConnection in the database dictionary: QuoteConnection
Declaration
public const string DictionaryTableName = "QuoteConnection"
Field Value
Type | Description |
---|---|
String |
Properties
AllAccess
Field 'AllAccess' in table 'QuoteConnection': Dictionary type Bool, .NET type: Int16
Is this connection accessible to everyone? If not, then the QuoteConnectionAccess table tells us who can access it
Declaration
public UInt16FieldInfo AllAccess { get; }
Property Value
Type | Description |
---|---|
UInt16FieldInfo |
ConnectorName
Field 'ConnectorName' in table 'QuoteConnection': Dictionary type String[255], .NET type: String
Programmatic name of the Connector plugin that implements this kind of connection
Declaration
public StringFieldInfo ConnectorName { get; }
Property Value
Type | Description |
---|---|
StringFieldInfo |
Definition
Definition of the table as described in the deployed runtime dictionary
Declaration
public override SoTable Definition { get; }
Property Value
Type | Description |
---|---|
SoTable |
Overrides
Deleted
Field 'Deleted' in table 'QuoteConnection': Dictionary type Bool, .NET type: Int16
If set, then this is a row that has been 'deleted'; we do not physically delete rows to avoid disaster
Declaration
public UInt16FieldInfo Deleted { get; }
Property Value
Type | Description |
---|---|
UInt16FieldInfo |
DictionaryTableNumber
Table number for table QuoteConnection 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 |
DisplayDescription
Field 'DisplayDescription' in table 'QuoteConnection': Dictionary type String[255], .NET type: String
Tooltip/description shown to user; multi-language support. Any other info available that would make an uncertain user chose the right connector. Typically, used for tooltip.
Declaration
public StringFieldInfo DisplayDescription { get; }
Property Value
Type | Description |
---|---|
StringFieldInfo |
DisplayName
Field 'DisplayName' in table 'QuoteConnection': Dictionary type String[255], .NET type: String
Connection name shown to user; multi-language support. The name of the connector to display in a list so that the users can choose between them. Typically the name of the client, with maybe the ERP system in parenthesis.
Declaration
public StringFieldInfo DisplayName { get; }
Property Value
Type | Description |
---|---|
StringFieldInfo |
ErpConnectionId
Field 'ErpConnectionId' in table 'QuoteConnection': Dictionary type FK, .NET type: Int32
The ERP Connection that this Quote connection is an extension of
Declaration
public Int32FieldInfo ErpConnectionId { get; }
Property Value
Type | Description |
---|---|
Int32FieldInfo |
ErpConnectionId_InnerJoin_ErpConnection
Generated join from the foreign key ErpConnectionId in this table, to its target table ErpConnectionTableInfo.
Declaration
public TargetedInnerJoin<ErpConnectionTableInfo> ErpConnectionId_InnerJoin_ErpConnection { get; }
Property Value
Type | Description |
---|---|
TargetedInnerJoin<ErpConnectionTableInfo> |
ERPName
Field 'ERPName' in table 'QuoteConnection': Dictionary type String[255], .NET type: String
Name of the ERP system (programmatic).
Declaration
public StringFieldInfo ERPName { get; }
Property Value
Type | Description |
---|---|
StringFieldInfo |
ExtraData
Field 'ExtraData' in table 'QuoteConnection': Dictionary type String[4000], .NET type: String
Optional extra data, in XML format, for configuring the connector. Connector-specific!
Declaration
public StringFieldInfo ExtraData { get; }
Property Value
Type | Description |
---|---|
StringFieldInfo |
LeftOuterJoin_ConnectionConfigField_QuoteConnectionId
Generated left outer join from the primary key QuoteConnectionId on this table, to ConnectionConfigField.QuoteConnectionId.
Declaration
public TargetedLeftOuterJoin<ConnectionConfigFieldTableInfo> LeftOuterJoin_ConnectionConfigField_QuoteConnectionId { get; }
Property Value
Type | Description |
---|---|
TargetedLeftOuterJoin<ConnectionConfigFieldTableInfo> |
LeftOuterJoin_PriceList_QuoteConnectionId
Generated left outer join from the primary key QuoteConnectionId on this table, to PriceList.QuoteConnectionId.
Declaration
public TargetedLeftOuterJoin<PriceListTableInfo> LeftOuterJoin_PriceList_QuoteConnectionId { get; }
Property Value
Type | Description |
---|---|
TargetedLeftOuterJoin<PriceListTableInfo> |
LeftOuterJoin_Quote_QuoteConnectionId
Generated left outer join from the primary key QuoteConnectionId on this table, to Quote.QuoteConnectionId.
Declaration
public TargetedLeftOuterJoin<QuoteTableInfo> LeftOuterJoin_Quote_QuoteConnectionId { get; }
Property Value
Type | Description |
---|---|
TargetedLeftOuterJoin<QuoteTableInfo> |
LeftOuterJoin_QuoteConnectionAccess_QuoteConnectionId
Generated left outer join from the primary key QuoteConnectionId on this table, to QuoteConnectionAccess.QuoteConnectionId.
Declaration
public TargetedLeftOuterJoin<QuoteConnectionAccessTableInfo> LeftOuterJoin_QuoteConnectionAccess_QuoteConnectionId { get; }
Property Value
Type | Description |
---|---|
TargetedLeftOuterJoin<QuoteConnectionAccessTableInfo> |
QuoteConnectionId
Field 'quoteconnection_id' in table 'QuoteConnection': Dictionary type PK, .NET type: Int32
Primary key
Declaration
public Int32FieldInfo QuoteConnectionId { get; }
Property Value
Type | Description |
---|---|
Int32FieldInfo |
Rank
Field 'Rank' in table 'QuoteConnection': Dictionary type Int, .NET type: Int32
Rank order
Declaration
public Int32FieldInfo Rank { get; }
Property Value
Type | Description |
---|---|
Int32FieldInfo |
Registered
Field 'registered' in table 'QuoteConnection': Dictionary type UtcDateTime, .NET type: DateTime
Registered when
Declaration
public DateTimeFieldInfo Registered { get; }
Property Value
Type | Description |
---|---|
DateTimeFieldInfo |
RegisteredAssociateId
Field 'registered_associate_id' in table 'QuoteConnection': Dictionary type FK, .NET type: Int32
Registered by whom
Declaration
public Int32FieldInfo RegisteredAssociateId { get; }
Property Value
Type | Description |
---|---|
Int32FieldInfo |
RegisteredAssociateId_InnerJoin_Associate
Generated join from the foreign key RegisteredAssociateId in this table, to its target table AssociateTableInfo.
Declaration
public TargetedInnerJoin<AssociateTableInfo> RegisteredAssociateId_InnerJoin_Associate { get; }
Property Value
Type | Description |
---|---|
TargetedInnerJoin<AssociateTableInfo> |
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 |
Updated
Field 'updated' in table 'QuoteConnection': Dictionary type UtcDateTime, .NET type: DateTime
Last updated when
Declaration
public DateTimeFieldInfo Updated { get; }
Property Value
Type | Description |
---|---|
DateTimeFieldInfo |
UpdatedAssociateId
Field 'updated_associate_id' in table 'QuoteConnection': Dictionary type FK, .NET type: Int32
Last updated by whom
Declaration
public Int32FieldInfo UpdatedAssociateId { get; }
Property Value
Type | Description |
---|---|
Int32FieldInfo |
UpdatedAssociateId_InnerJoin_Associate
Generated join from the foreign key UpdatedAssociateId in this table, to its target table AssociateTableInfo.
Declaration
public TargetedInnerJoin<AssociateTableInfo> UpdatedAssociateId_InnerJoin_Associate { get; }
Property Value
Type | Description |
---|---|
TargetedInnerJoin<AssociateTableInfo> |
UpdatedCount
Field 'updatedCount' in table 'QuoteConnection': Dictionary type UShort, .NET type: Int16
Number of updates made to this record
Declaration
public UInt16FieldInfo UpdatedCount { get; }
Property Value
Type | Description |
---|---|
UInt16FieldInfo |