Class SystemObjectInstall
call representing an system object install, instancing t4 templates.
Inherited Members
Namespace: TimeCockpit.Data.Install
Assembly: TimeCockpit.Data.dll
Syntax
public class SystemObjectInstall : InstallationComponent
Constructors
SystemObjectInstall()
Declaration
public SystemObjectInstall()
Properties
ContentTemplate
Gets or sets the ContentTemplate.
Declaration
public string ContentTemplate { get; set; }
Property Value
Type | Description |
---|---|
System.String |
MatchCriteriaCondition
Gets or sets the match criteria condition
Declaration
public StatementExecution MatchCriteriaCondition { get; set; }
Property Value
Type | Description |
---|---|
StatementExecution |
Remarks
The match criteria query (MatchCriteriaQuery) is used to determine whether the script should be executed. If specified this query is executed against the target database. Depending on the setting of the MatchCriteriaCondition property and the query's result the system executes or ignores the script.
MatchCriteriaQuery
Gets or sets the match criteria query
Declaration
public string MatchCriteriaQuery { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Remarks
The match criteria query is used to determine whether the script should be executed. If specified this query is executed against the target database. Depending on the setting of the MatchCriteriaCondition property and the query's result the system executes or ignores the script.
Note that the match criteria query has to return a scalar int value. A resulting value >= 1 indicates that the object in question exists, <= 0 means that the object in question does not exist.