Show / Hide Table of Contents

Class FormSubmissionTableInfo

Table 'form_submission': A form submission

Inheritance
Object
TableInfo
FormSubmissionTableInfo
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("form_submission")]
public class FormSubmissionTableInfo : 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 FormSubmission in the database dictionary: form_submission

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

Properties

ContactId

Field 'contact_id' in table 'form_submission': Dictionary type FK, .NET type: Int32

The optional id of the contact of the person who submitted.

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

ContactId_InnerJoin_Contact

Generated join from the foreign key ContactId in this table, to its target table ContactTableInfo.

Declaration
public TargetedInnerJoin<ContactTableInfo> ContactId_InnerJoin_Contact { get; }
Property Value
Type Description
TargetedInnerJoin<ContactTableInfo>

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 FormSubmission 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

EmailAddress

Field 'email_address' in table 'form_submission': Dictionary type String[256], .NET type: String

The email address of the person who submitted

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

FormId

Field 'form_id' in table 'form_submission': Dictionary type FK, .NET type: Int32

The id of the parent form.

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

FormId_InnerJoin_Form

Generated join from the foreign key FormId in this table, to its target table FormTableInfo.

Declaration
public TargetedInnerJoin<FormTableInfo> FormId_InnerJoin_Form { get; }
Property Value
Type Description
TargetedInnerJoin<FormTableInfo>

FormSubmissionId

Field 'form_submission_id' in table 'form_submission': Dictionary type PK, .NET type: Int32

Primary key

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

LeftOuterJoin_SShipmentAddr_FormSubmissionId

Generated left outer join from the primary key FormSubmissionId on this table, to SShipmentAddr.FormSubmissionId.

Declaration
public TargetedLeftOuterJoin<SShipmentAddrTableInfo> LeftOuterJoin_SShipmentAddr_FormSubmissionId { get; }
Property Value
Type Description
TargetedLeftOuterJoin<SShipmentAddrTableInfo>

LeftOuterJoin_Ticket_FormSubmissionId

Generated left outer join from the primary key FormSubmissionId on this table, to Ticket.FormSubmissionId.

Declaration
public TargetedLeftOuterJoin<TicketTableInfo> LeftOuterJoin_Ticket_FormSubmissionId { get; }
Property Value
Type Description
TargetedLeftOuterJoin<TicketTableInfo>

PersonId

Field 'person_id' in table 'form_submission': Dictionary type FK, .NET type: Int32

The optional id of the person who submitted.

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

PersonId_InnerJoin_Person

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

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

ProcessingLog

Field 'processing_log' in table 'form_submission': Dictionary type String[4001], .NET type: String

A log of what happened during processing

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

Response

Field 'response' in table 'form_submission': Dictionary type Clob, .NET type: String

The JSON-formatted response from this form

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

ResponseShipmentAddrId

Field 'response_shipment_addr_id' in table 'form_submission': Dictionary type FK, .NET type: Int32

The id of the s_shipment_addr that is the response mail

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

ResponseShipmentAddrId_InnerJoin_SShipmentAddr

Generated join from the foreign key ResponseShipmentAddrId in this table, to its target table SShipmentAddrTableInfo.

Declaration
public TargetedInnerJoin<SShipmentAddrTableInfo> ResponseShipmentAddrId_InnerJoin_SShipmentAddr { get; }
Property Value
Type Description
TargetedInnerJoin<SShipmentAddrTableInfo>

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

Status

Field 'status' in table 'form_submission': Dictionary type Enum, .NET type: FormSubmissionStatus

What is the status of this submission

Declaration
public FormSubmissionStatusFieldInfo Status { get; }
Property Value
Type Description
FormSubmissionStatusFieldInfo

WhenSubmitted

Field 'when_submitted' in table 'form_submission': Dictionary type DateTime, .NET type: DateTime

The time of the submit.

Declaration
public DateTimeFieldInfo WhenSubmitted { 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