Show / Hide Table of Contents

Class ScheduledTaskTableInfo

Table 'scheduled_task': A scheduled entry executing a script at certain times

Inheritance
Object
TableInfo
ScheduledTaskTableInfo
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("scheduled_task")]
public class ScheduledTaskTableInfo : 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 ScheduledTask in the database dictionary: scheduled_task

Declaration
public const string DictionaryTableName = "scheduled_task"
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
TableInfo.Definition

Description

Field 'description' in table 'scheduled_task': Dictionary type String[2048], .NET type: String

Optional description of what this task is used for.

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

DictionaryTableNumber

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

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

ScheduledTaskId

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

Primary key

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

ScheduleId

Field 'schedule_id' in table 'scheduled_task': Dictionary type FK, .NET type: Int32

Update schedule

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

ScheduleId_InnerJoin_Schedule

Generated join from the foreign key ScheduleId in this table, to its target table ScheduleTableInfo.

Declaration
public TargetedInnerJoin<ScheduleTableInfo> ScheduleId_InnerJoin_Schedule { get; }
Property Value
Type Description
TargetedInnerJoin<ScheduleTableInfo>

ScriptId

Field 'script_id' in table 'scheduled_task': Dictionary type FK, .NET type: Int32

The id of the script to execute.

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

ScriptId_InnerJoin_Ejscript

Generated join from the foreign key ScriptId in this table, to its target table EjscriptTableInfo.

Declaration
public TargetedInnerJoin<EjscriptTableInfo> ScriptId_InnerJoin_Ejscript { get; }
Property Value
Type Description
TargetedInnerJoin<EjscriptTableInfo>

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